From 3e9f38e833b0ec6b57e94355347295338b7ba043 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 19 Dec 2005 01:43:04 +0000 Subject: [PATCH] cleanup --- stepmania/src/RageThreads.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/stepmania/src/RageThreads.h b/stepmania/src/RageThreads.h index 33653b0ec6..58adf503d6 100644 --- a/stepmania/src/RageThreads.h +++ b/stepmania/src/RageThreads.h @@ -7,13 +7,6 @@ struct ThreadSlot; class RageTimer; class RageThread { - ThreadSlot *m_pSlot; - CString name; - bool m_bThisThread; - - static bool s_bSystemSupportsTLS; - static bool s_bIsShowingDialog; - public: RageThread(); ~RageThread(); @@ -46,6 +39,14 @@ public: static bool GetIsShowingDialog() { return s_bIsShowingDialog; } static void SetIsShowingDialog( bool b ) { s_bIsShowingDialog = b; } + +private: + ThreadSlot *m_pSlot; + CString name; + bool m_bThisThread; + + static bool s_bSystemSupportsTLS; + static bool s_bIsShowingDialog; }; namespace Checkpoints