Silence a LOG

This commit is contained in:
Aaron Culliney 2016-10-23 18:30:08 -07:00
parent 1bb3f75a06
commit c0a4ced573

View File

@ -243,7 +243,7 @@ void android_keycode_to_emulator(int keyCode, int metaState, bool pressed) {
} }
} while (0); } while (0);
LOG("keyCode:%08x -> key:%02x ('%c') metaState:%08x", keyCode, key, key, metaState); //LOG("keyCode:%08x -> key:%02x ('%c') metaState:%08x", keyCode, key, key, metaState);
if (isASCII && _is_ctrl(metaState)) { if (isASCII && _is_ctrl(metaState)) {
key = c_keys_ascii_to_scancode(key); key = c_keys_ascii_to_scancode(key);