(Android) Fix erroneous bitmask unset

This commit is contained in:
twinaphex 2012-12-06 10:16:13 +01:00
parent b7e3bcc2c9
commit 3a85a68230

View File

@ -389,7 +389,7 @@ static void* android_app_entry(void* param)
/* We've done everything state-wise needed for RARCH_REENTRANT,
* get rid of it now */
g_android.input_state |= ~(1ULL << RARCH_REENTRANT);
g_android.input_state &= ~(1ULL << RARCH_REENTRANT);
}
else if ((init_ret = rarch_main_init(argc, argv)) != 0)
{