From 0a872c8c775e90059afa73dc97ac50376303e0dd Mon Sep 17 00:00:00 2001 From: Renaud Lepage Date: Fri, 15 Sep 2006 15:01:50 +0000 Subject: [PATCH] Code cleanup. --- stepmania/src/archutils/Xbox/GraphicsWindow.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stepmania/src/archutils/Xbox/GraphicsWindow.cpp b/stepmania/src/archutils/Xbox/GraphicsWindow.cpp index 6e232bd1dd..42ad602abd 100644 --- a/stepmania/src/archutils/Xbox/GraphicsWindow.cpp +++ b/stepmania/src/archutils/Xbox/GraphicsWindow.cpp @@ -12,7 +12,7 @@ static bool g_bResolutionChanged = false; static bool g_bHasFocus = true; static bool g_bLastHasFocus = true; static bool m_bWideWindowClass; -void isPALSystem(); +bool isPALSystem(); void setScreenResolutionValues(); void GraphicsWindow::SetVideoModeParams( const VideoModeParams ¶ms ) @@ -63,9 +63,11 @@ bool isPALSystem() g_CurrentParams.rate = 50; g_CurrentParams.PAL = true; + return true; } g_CurrentParams.rate = 60; g_CurrentParams.PAL = false; + return false; } void setScreenResolutionValues() {