From 32aedad7ab643f14dd2d4bdc9c9a485ba7e5495a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 16 Sep 2003 02:38:18 +0000 Subject: [PATCH] Simplify. --- stepmania/src/StepMania.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index 8280bcd1d3..0e4dd16ad6 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -524,8 +524,7 @@ int main(int argc, char* argv[]) /* Fire up the SDL, but don't actually start any subsystems. * We use our own error handlers. */ - int SDL_flags = SDL_INIT_NOPARACHUTE; - SDL_Init(SDL_flags); + SDL_Init( SDL_INIT_NOPARACHUTE ); LoadingWindow *loading_window = MakeLoadingWindow(); if( loading_window == NULL )