From 3e9c9141fe1d73bbdd90b303a7e7747ef92e5aac Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 12 Mar 2006 23:39:54 +0000 Subject: [PATCH] Fix declared extern and then redeclared static warning. --- stepmania/src/StepMania.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index 27f30874c1..3a5e61bd91 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -225,7 +225,7 @@ void StepMania::ApplyGraphicOptions() INPUTMAN->WindowReset(); } -bool CheckVideoDefaultSettings(); +static bool CheckVideoDefaultSettings(); void StepMania::ResetPreferences() { @@ -599,7 +599,7 @@ static RString GetVideoDriverName() #endif } -static bool CheckVideoDefaultSettings() +bool CheckVideoDefaultSettings() { // Video card changed since last run RString sVideoDriver = GetVideoDriverName();