diff options
author | dhewg | 2011-02-26 12:34:55 +0100 |
---|---|---|
committer | dhewg | 2011-02-27 09:04:31 +0100 |
commit | 6b1c575d1d6471a922978559c69426b1f9856768 (patch) | |
tree | 0d7e78c398b9e3ea0a29aaf7fd15beb373462c5f | |
parent | a99b394836150bef7be8bc79cf656c343d703782 (diff) | |
download | scummvm-rg350-6b1c575d1d6471a922978559c69426b1f9856768.tar.gz scummvm-rg350-6b1c575d1d6471a922978559c69426b1f9856768.tar.bz2 scummvm-rg350-6b1c575d1d6471a922978559c69426b1f9856768.zip |
ANDROID: Remove another weird workaround
-rw-r--r-- | backends/platform/android/gfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/android/gfx.cpp b/backends/platform/android/gfx.cpp index 35c91d724c..8601a3bfca 100644 --- a/backends/platform/android/gfx.cpp +++ b/backends/platform/android/gfx.cpp @@ -401,7 +401,7 @@ void OSystem_Android::copyRectToOverlay(const OverlayColor *buf, int pitch, _overlay_texture->updateBuffer(x, y, w, h, buf, pitch * sizeof(buf[0])); // Shouldn't need this, but works around a 'blank screen' bug on Nexus1? - updateScreen(); + //updateScreen(); } int16 OSystem_Android::getOverlayHeight() { |