From 61654be8def7dad695ef5953e42e428035cbd0d3 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 15 Jan 2006 01:08:24 +0000 Subject: [PATCH] remove remove SetVideoModeParams --- stepmania/src/archutils/Win32/GraphicsWindow.cpp | 7 ------- stepmania/src/archutils/Win32/GraphicsWindow.h | 1 - 2 files changed, 8 deletions(-) diff --git a/stepmania/src/archutils/Win32/GraphicsWindow.cpp b/stepmania/src/archutils/Win32/GraphicsWindow.cpp index aea7c06afa..d93b9d50be 100644 --- a/stepmania/src/archutils/Win32/GraphicsWindow.cpp +++ b/stepmania/src/archutils/Win32/GraphicsWindow.cpp @@ -174,13 +174,6 @@ static LRESULT CALLBACK GraphicsWindow_WndProc( HWND hWnd, UINT msg, WPARAM wPar return DefWindowProcA( hWnd, msg, wParam, lParam ); } -void GraphicsWindow::SetVideoModeParams( const VideoModeParams &p ) -{ - //LOG->Warn( "GraphicsWindow::SetVideoModeParams %d %d", p.width, p.height ); - - g_CurrentParams = p; -} - /* Set the display mode to the given size, bit depth and refresh. The refresh * setting may be ignored. */ CString GraphicsWindow::SetScreenMode( const VideoModeParams &p ) diff --git a/stepmania/src/archutils/Win32/GraphicsWindow.h b/stepmania/src/archutils/Win32/GraphicsWindow.h index b57519d876..26c43be865 100644 --- a/stepmania/src/archutils/Win32/GraphicsWindow.h +++ b/stepmania/src/archutils/Win32/GraphicsWindow.h @@ -15,7 +15,6 @@ namespace GraphicsWindow /* Shut down completely. */ void Shutdown(); - void SetVideoModeParams( const VideoModeParams &p ); CString SetScreenMode( const VideoModeParams &p ); void DestroyGraphicsWindow(); void ConfigureGraphicsWindow( const VideoModeParams &p, bool bForceRecreateWindow = false );