]> git.tdb.fi Git - libs/gui.git/blob - source/graphics/videomode.cpp
Move struct VideoMode to its own header
[libs/gui.git] / source / graphics / videomode.cpp
1 #include <msp/strings/format.h>
2 #include "videomode.h"
3
4 namespace Msp {
5 namespace Graphics {
6
7 unsupported_video_mode::unsupported_video_mode(const VideoMode &mode):
8         runtime_error(format("%dx%d", mode.width, mode.height))
9 { }
10
11 } // namespace Graphics
12 } // namespace Msp