From d9fc6ef12f22978b2e059b10eb5a03c5b05664ee Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 24 Apr 2003 03:37:18 +0000 Subject: [PATCH] don't init unneeded SDL subsystem --- stepmania/src/RageTimer.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stepmania/src/RageTimer.cpp b/stepmania/src/RageTimer.cpp index cd34cb6845..bcbc0c43b2 100644 --- a/stepmania/src/RageTimer.cpp +++ b/stepmania/src/RageTimer.cpp @@ -28,11 +28,15 @@ RageTimer::RageTimer() void RageTimer::Init() { +/* + This is needed for the "timer" system, not the "ticks" system; it often starts + a thread, so let's not do it--we don't need it. static bool SDL_Initialized = false; if(!SDL_Initialized) { SDL_InitSubSystem(SDL_INIT_TIMER); SDL_Initialized = true; } +*/ } float RageTimer::GetDeltaTime()