From a692d9f58d109f95a66b555180b51d6c39926b65 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 31 Dec 2005 06:16:22 +0000 Subject: [PATCH] cleanup --- stepmania/src/arch/ArchHooks/ArchHooks.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/stepmania/src/arch/ArchHooks/ArchHooks.h b/stepmania/src/arch/ArchHooks/ArchHooks.h index 3c38d40a85..2ff3816edc 100644 --- a/stepmania/src/arch/ArchHooks/ArchHooks.h +++ b/stepmania/src/arch/ArchHooks/ArchHooks.h @@ -3,8 +3,6 @@ class ArchHooks { - static bool s_bQuitting; - static bool s_bToggleWindowed; public: virtual ~ArchHooks() { } @@ -105,6 +103,9 @@ private: * that may loop or move backwards. */ static int64_t FixupTimeIfLooped( int64_t usecs ); static int64_t FixupTimeIfBackwards( int64_t usecs ); + + static bool s_bQuitting; + static bool s_bToggleWindowed; }; #endif