From 852ba5f3363dc8209623c86dfc6e033d59218699 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 18 Jan 2006 09:27:09 +0000 Subject: [PATCH] see if this is fixed --- stepmania/src/archutils/Win32/GraphicsWindow.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/stepmania/src/archutils/Win32/GraphicsWindow.cpp b/stepmania/src/archutils/Win32/GraphicsWindow.cpp index 41939d807f..1f658b15af 100644 --- a/stepmania/src/archutils/Win32/GraphicsWindow.cpp +++ b/stepmania/src/archutils/Win32/GraphicsWindow.cpp @@ -85,11 +85,14 @@ static LRESULT CALLBACK GraphicsWindow_WndProc( HWND hWnd, UINT msg, WPARAM wPar // Set the video mode through DISPLAY instead of ChangeDisplaySettings // so that the viewport is correctly reset. - //ChangeDisplaySettings( &g_FullScreenDevMode, CDS_FULLSCREEN ); +#if 1 + ChangeDisplaySettings( &g_FullScreenDevMode, CDS_FULLSCREEN ); +#else bool bNewDevice; VideoModeParams p; StepMania::GetPreferredVideoModeParams( p ); DISPLAY->SetVideoMode( p, bNewDevice ); +#endif ShowWindow( g_hWndMain, SW_SHOWNORMAL ); }