From 4c3792f43b938d95612532ea1ea2b8db69208876 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Tue, 15 Jul 2003 00:47:53 +0000 Subject: [PATCH] my bad, the problem was in StepMania.cpp where not StepMania.h --- stepmania/src/StepMania.cpp | 5 ++--- stepmania/src/StepMania.h | 5 +++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index 085770f1d3..56d56929f0 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -61,11 +61,10 @@ #endif HWND g_hWndMain = NULL; -int g_argc = 0; -char **g_argv = NULL; - #endif +int g_argc = 0; +char **g_argv = NULL; static bool g_bHasFocus = true; static bool g_bQuitting = false; diff --git a/stepmania/src/StepMania.h b/stepmania/src/StepMania.h index a99003c3a1..30a6a7b934 100644 --- a/stepmania/src/StepMania.h +++ b/stepmania/src/StepMania.h @@ -17,8 +17,9 @@ void ResetGame(); #if defined(WIN32) extern HWND g_hWndMain; -extern int g_argc; -extern char **g_argv; #endif +extern int g_argc; +extern char **g_argv; + #endif