From be22d989cb7051ee6cbc7b81f9f2fe34ff93b194 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 8 Sep 2004 02:28:32 +0000 Subject: [PATCH] fix warning --- stepmania/src/RageUtil_BackgroundLoader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageUtil_BackgroundLoader.cpp b/stepmania/src/RageUtil_BackgroundLoader.cpp index 3687c782d0..ed6273b9c1 100644 --- a/stepmania/src/RageUtil_BackgroundLoader.cpp +++ b/stepmania/src/RageUtil_BackgroundLoader.cpp @@ -17,8 +17,8 @@ static const bool g_bWriteToCache = true; static const bool g_bEnableBackgroundLoading = false; BackgroundLoader::BackgroundLoader(): - m_Mutex( "BackgroundLoaderMutex" ), - m_StartSem( "BackgroundLoaderSem" ) + m_StartSem( "BackgroundLoaderSem" ), + m_Mutex( "BackgroundLoaderMutex" ) { if( !g_bEnableBackgroundLoading ) return;