diff options
author | Alyssa Milburn | 2013-05-16 12:57:21 +0200 |
---|---|---|
committer | Alyssa Milburn | 2013-05-16 12:57:21 +0200 |
commit | 8d488f9f70171fa33ff7013efb7cc476e15f8bda (patch) | |
tree | 76ed1116fec64398cd195a15a348ab487d184163 /backends/platform/android | |
parent | c96b75e1f7c3ca7c46aafc51d7d1fd841417c15c (diff) | |
download | scummvm-rg350-8d488f9f70171fa33ff7013efb7cc476e15f8bda.tar.gz scummvm-rg350-8d488f9f70171fa33ff7013efb7cc476e15f8bda.tar.bz2 scummvm-rg350-8d488f9f70171fa33ff7013efb7cc476e15f8bda.zip |
ANDROID: Force htc_fail for all Android devices, for now.
Diffstat (limited to 'backends/platform/android')
-rw-r--r-- | backends/platform/android/android.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/android/android.cpp b/backends/platform/android/android.cpp index 0b31ee717c..f06e4be19e 100644 --- a/backends/platform/android/android.cpp +++ b/backends/platform/android/android.cpp @@ -116,7 +116,7 @@ OSystem_Android::OSystem_Android(int audio_sample_rate, int audio_buffer_size) : _screen_changeid(0), _egl_surface_width(0), _egl_surface_height(0), - _htc_fail(false), + _htc_fail(true), _force_redraw(false), _game_texture(0), _overlay_texture(0), @@ -162,10 +162,10 @@ OSystem_Android::OSystem_Android(int audio_sample_rate, int audio_buffer_size) : getSystemProperty("ro.product.cpu.abi").c_str()); mf.toLowercase(); - _htc_fail = mf.contains("htc"); + /*_htc_fail = mf.contains("htc"); if (_htc_fail) - LOGI("Enabling HTC workaround"); + LOGI("Enabling HTC workaround");*/ } OSystem_Android::~OSystem_Android() { |