From 24720d7df10ed7c3f0e544f93ef1606bf7e35ace Mon Sep 17 00:00:00 2001 From: Lynix Date: Wed, 19 Dec 2012 15:02:22 +0100 Subject: [PATCH] Moved static function prototype Former-commit-id: f5be3289558e3285f14216428221df0fed2e4d5a --- include/Nazara/Utility/VideoMode.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/Nazara/Utility/VideoMode.hpp b/include/Nazara/Utility/VideoMode.hpp index f4a77815f..f1a929a46 100644 --- a/include/Nazara/Utility/VideoMode.hpp +++ b/include/Nazara/Utility/VideoMode.hpp @@ -20,12 +20,12 @@ class NAZARA_API NzVideoMode bool IsFullscreenValid() const; - static NzVideoMode GetDesktopMode(); - static const std::vector& GetFullscreenModes(); - nzUInt8 bitsPerPixel; unsigned int height; unsigned int width; + + static NzVideoMode GetDesktopMode(); + static const std::vector& GetFullscreenModes(); }; bool operator==(const NzVideoMode& left, const NzVideoMode& right);