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() {