diff --git a/backends/platform/android/gfx.cpp b/backends/platform/android/gfx.cpp index 8f64ceb0760..2c6518a778d 100644 --- a/backends/platform/android/gfx.cpp +++ b/backends/platform/android/gfx.cpp @@ -342,8 +342,6 @@ void OSystem_Android::updateScreenRect() { uint16 h = _game_texture->height(); if (w && h && !_fullscreen) { - if (_ar_correction && w == 320 && h == 200) - h = 240; float dpi[2]; JNI::getDPI(dpi); @@ -368,8 +366,6 @@ void OSystem_Android::updateScreenRect() { } } - glScissor(rect.left, rect.top, rect.width(), rect.height()); - _game_texture->setDrawRect(rect); }