From 336e3be92ba44d9c1317ed9b7f35ca566f2de27e Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 29 Dec 2005 07:45:06 +0000 Subject: [PATCH] call base (even though it happens to be a no-op right now) --- stepmania/src/RageDisplay_D3D.cpp | 2 ++ stepmania/src/RageDisplay_OGL.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/stepmania/src/RageDisplay_D3D.cpp b/stepmania/src/RageDisplay_D3D.cpp index d52e7c45e7..d6adc0f55d 100644 --- a/stepmania/src/RageDisplay_D3D.cpp +++ b/stepmania/src/RageDisplay_D3D.cpp @@ -659,6 +659,8 @@ void RageDisplay_D3D::ResolutionChanged() g_pd3dDevice->Clear( 0, NULL, D3DCLEAR_TARGET|D3DCLEAR_ZBUFFER, D3DCOLOR_XRGB(0,0,0), 1.0f, 0x00000000 ); #endif + + RageDisplay::ResolutionChanged(); } int RageDisplay_D3D::GetMaxTextureSize() const diff --git a/stepmania/src/RageDisplay_OGL.cpp b/stepmania/src/RageDisplay_OGL.cpp index 010425a81a..55832e2e64 100644 --- a/stepmania/src/RageDisplay_OGL.cpp +++ b/stepmania/src/RageDisplay_OGL.cpp @@ -615,6 +615,8 @@ void RageDisplay_OGL::ResolutionChanged() /* Clear any junk that's in the framebuffer. */ if( BeginFrame() ) EndFrame(); + + RageDisplay::ResolutionChanged(); } // Return true if mode change was successful.