From b0e5b24549d62954029320d4587c220cc63d05e3 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 17 Feb 2003 03:09:25 +0000 Subject: [PATCH] move debug dump earlier --- stepmania/src/RageDisplay.cpp | 3 --- stepmania/src/StepMania.cpp | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/stepmania/src/RageDisplay.cpp b/stepmania/src/RageDisplay.cpp index e574d530c5..f0b88042ee 100644 --- a/stepmania/src/RageDisplay.cpp +++ b/stepmania/src/RageDisplay.cpp @@ -76,9 +76,6 @@ RageDisplay::RageDisplay( bool windowed, int width, int height, int bpp, int rat { LOG->Trace( "RageDisplay::RageDisplay()" ); - /* Give hooks a chance to do some debug init before we try to fire up OpenGL. */ - HOOKS->PreDisplayInit(); - m_oglspecs = new oglspecs_t; SDL_InitSubSystem(SDL_INIT_VIDEO); diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index c61f14f756..554e26a2f1 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -267,6 +267,8 @@ int main(int argc, char* argv[]) // changed to use time. GetTimeSinceStart is silly because it always return 0! -Chris srand( time(NULL) ); // seed number generator + HOOKS->DumpDebugInfo(); + // // Create game objects //