OPENGL: Fix aspect ratio bug when switching render

This commit is contained in:
lamebanana 2021-04-14 18:51:00 +02:00 committed by Eugene Sandulenko
parent 88f265bd9a
commit 8af0b8baa5

View File

@ -1221,7 +1221,7 @@ bool OpenGLGraphicsManager::getGLPixelFormat(const Graphics::PixelFormat &pixelF
}
bool OpenGLGraphicsManager::gameNeedsAspectRatioCorrection() const {
if (_currentState.aspectRatioCorrection) {
if (ConfMan.getBool("aspect_ratio")) {
const uint width = getWidth();
const uint height = getHeight();