From 914a182a7223355e6b07cea22636813c7cda18ac Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sat, 3 Dec 2005 07:44:25 +0000 Subject: [PATCH] fix compile --- stepmania/src/archutils/Win32/GraphicsWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/archutils/Win32/GraphicsWindow.cpp b/stepmania/src/archutils/Win32/GraphicsWindow.cpp index 313d381a98..5428ad3103 100644 --- a/stepmania/src/archutils/Win32/GraphicsWindow.cpp +++ b/stepmania/src/archutils/Win32/GraphicsWindow.cpp @@ -83,7 +83,7 @@ LRESULT CALLBACK GraphicsWindow::GraphicsWindow_WndProc( HWND hWnd, UINT msg, WP //ChangeDisplaySettings( &g_FullScreenDevMode, CDS_FULLSCREEN ); bool bNewDevice; VideoModeParams p; - GetPreferredVideoModeParams( p ); + StepMania::GetPreferredVideoModeParams( p ); DISPLAY->SetVideoMode( p, bNewDevice ); ShowWindow( g_hWndMain, SW_SHOWNORMAL ); @@ -452,7 +452,7 @@ void GraphicsWindow::Update() if( g_bHasFocus != g_bLastHasFocus ) { - FocusChanged( g_bHasFocus ); + StepMania::FocusChanged( g_bHasFocus ); g_bLastHasFocus = g_bHasFocus; }