Fix sf::VideoMode usage example

This commit is contained in:
kimci86 2024-05-04 13:10:58 +02:00 committed by Chris Thrasher
parent d99d673330
commit eb762db342

View File

@ -212,7 +212,7 @@ SFML_WINDOW_API bool operator>=(const VideoMode& left, const VideoMode& right);
/// {
/// sf::VideoMode mode = modes[i];
/// std::cout << "Mode #" << i << ": "
/// << mode.width << "x" << mode.height << " - "
/// << mode.size.x << "x" << mode.size.y << " - "
/// << mode.bitsPerPixel << " bpp" << std::endl;
/// }
///