From 866d34a97d57220d17e9a14995220f78ac5a1548 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sat, 17 Dec 2005 13:09:04 +0000 Subject: [PATCH] Remove ExitGame() --- stepmania/src/GameLoop.cpp | 9 +-------- stepmania/src/GameLoop.h | 1 - 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/stepmania/src/GameLoop.cpp b/stepmania/src/GameLoop.cpp index b4beabed13..7c1c795d9c 100644 --- a/stepmania/src/GameLoop.cpp +++ b/stepmania/src/GameLoop.cpp @@ -25,20 +25,13 @@ static bool g_bQuitting = false; static RageTimer g_GameplayTimer; -void ExitGame() -{ - g_bQuitting = true; -} - static bool UserQuit() { - return g_bQuitting || HOOKS->UserQuit(); + return g_bQuitting || ArchHooks::UserQuit(); } void HandleInputEvents( float fDeltaTime ); - - static void CheckGameLoopTimerSkips( float fDeltaTime ) { if( !PREFSMAN->m_bLogSkips ) diff --git a/stepmania/src/GameLoop.h b/stepmania/src/GameLoop.h index 884b4fece1..b34072c272 100644 --- a/stepmania/src/GameLoop.h +++ b/stepmania/src/GameLoop.h @@ -3,7 +3,6 @@ #ifndef GAME_LOOP_H #define GAME_LOOP_H -void ExitGame(); void GameLoop(); void StartConcurrentRendering(); void FinishConcurrentRendering();