aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordhewg2011-03-13 16:42:50 +0100
committerdhewg2011-03-13 16:50:48 +0100
commit787b27a4b1cde2bd8e750b4eb477189565588e28 (patch)
tree969f724a6cf99d36db417863b087e39342def4e3
parentfa51d82639a500939907fdc9d18497914c60fe2c (diff)
downloadscummvm-rg350-787b27a4b1cde2bd8e750b4eb477189565588e28.tar.gz
scummvm-rg350-787b27a4b1cde2bd8e750b4eb477189565588e28.tar.bz2
scummvm-rg350-787b27a4b1cde2bd8e750b4eb477189565588e28.zip
ANDROID: Add missing updateScreen() calls
-rw-r--r--backends/platform/android/android.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/platform/android/android.cpp b/backends/platform/android/android.cpp
index e2e3174877..4391cf50db 100644
--- a/backends/platform/android/android.cpp
+++ b/backends/platform/android/android.cpp
@@ -423,6 +423,7 @@ bool OSystem_Android::pollEvent(Common::Event &event) {
_force_redraw = true;
updateScreen();
_force_redraw = true;
+ updateScreen();
event.type = Common::EVENT_SCREEN_CHANGED;
@@ -431,6 +432,7 @@ bool OSystem_Android::pollEvent(Common::Event &event) {
// new surface
initSurface();
_force_redraw = true;
+ updateScreen();
event.type = Common::EVENT_SCREEN_CHANGED;