From a3bdc15dcf5f8730f76dc7788f2113612e0e4f7a Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sat, 20 Mar 2004 18:14:26 +0000 Subject: [PATCH] fix destruction order --- stepmania/src/StepMania.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index f74610274f..1478e331f7 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -1036,8 +1036,8 @@ int main(int argc, char* argv[]) } #endif - SAFE_DELETE( NSMAN ); SAFE_DELETE( SCREENMAN ); + SAFE_DELETE( NSMAN ); /* Delete INPUTMAN before the other INPUTFILTER handlers, or an input * driver may try to send a message to INPUTFILTER after we delete it. */ SAFE_DELETE( INPUTMAN );