ANDROID: Force htc_fail for all Android devices, for now.

This commit is contained in:
Alyssa Milburn 2013-05-16 12:57:21 +02:00
parent c96b75e1f7
commit 8d488f9f70

View File

@ -116,7 +116,7 @@ OSystem_Android::OSystem_Android(int audio_sample_rate, int audio_buffer_size) :
_screen_changeid(0), _screen_changeid(0),
_egl_surface_width(0), _egl_surface_width(0),
_egl_surface_height(0), _egl_surface_height(0),
_htc_fail(false), _htc_fail(true),
_force_redraw(false), _force_redraw(false),
_game_texture(0), _game_texture(0),
_overlay_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()); getSystemProperty("ro.product.cpu.abi").c_str());
mf.toLowercase(); mf.toLowercase();
_htc_fail = mf.contains("htc"); /*_htc_fail = mf.contains("htc");
if (_htc_fail) if (_htc_fail)
LOGI("Enabling HTC workaround"); LOGI("Enabling HTC workaround");*/
} }
OSystem_Android::~OSystem_Android() { OSystem_Android::~OSystem_Android() {