X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fgraphics%2Fvideomode.cpp;fp=source%2Fgraphics%2Fvideomode.cpp;h=a07112a1eb5be6c2ff68dd8ab183e4eb11760927;hb=e09c2211539f417474b1d3226f56f021938329bf;hp=0000000000000000000000000000000000000000;hpb=a1341ef0d1e5a153a97fee929f11c3655ff5a8ea;p=libs%2Fgui.git diff --git a/source/graphics/videomode.cpp b/source/graphics/videomode.cpp new file mode 100644 index 0000000..a07112a --- /dev/null +++ b/source/graphics/videomode.cpp @@ -0,0 +1,12 @@ +#include +#include "videomode.h" + +namespace Msp { +namespace Graphics { + +unsupported_video_mode::unsupported_video_mode(const VideoMode &mode): + runtime_error(format("%dx%d", mode.width, mode.height)) +{ } + +} // namespace Graphics +} // namespace Msp