diff options
author | dhewg | 2011-03-17 19:03:51 +0100 |
---|---|---|
committer | dhewg | 2011-03-17 19:35:58 +0100 |
commit | 82bcddf8dacb894fe1155ca768df9a072984ef91 (patch) | |
tree | e284f7ec445b21c433649aa39120f24c85c83173 | |
parent | f4fd9e8b504a2e49fbd67d288e591377c466760c (diff) | |
download | scummvm-rg350-82bcddf8dacb894fe1155ca768df9a072984ef91.tar.gz scummvm-rg350-82bcddf8dacb894fe1155ca768df9a072984ef91.tar.bz2 scummvm-rg350-82bcddf8dacb894fe1155ca768df9a072984ef91.zip |
ANDROID: Init vars to match with the defaults
The feature flags are set too late, so lets fix that here
-rw-r--r-- | backends/platform/android/android.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/android/android.cpp b/backends/platform/android/android.cpp index 4e1373a1b1..483b37310a 100644 --- a/backends/platform/android/android.cpp +++ b/backends/platform/android/android.cpp @@ -109,9 +109,9 @@ OSystem_Android::OSystem_Android(int audio_sample_rate, int audio_buffer_size) : _mouse_hotspot(), _mouse_keycolor(0), _use_mouse_palette(false), - _fullscreen(false), _graphicsMode(0), - _ar_correction(false), + _fullscreen(true), + _ar_correction(true), _show_mouse(false), _show_overlay(false), _enable_zoning(false), |