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.