(iOS) Buildfix

This commit is contained in:
twinaphex 2017-04-28 15:04:00 +02:00
parent 2c53553952
commit 7b9c146ae9

View File

@ -282,14 +282,14 @@ void apple_input_keyboard_event(bool down,
code = HIDKEY(code);
#if TARGET_OS_IPHONE
if (settings->input.keyboard_gamepad_enable)
if (settings->bools.input_keyboard_gamepad_enable)
{
if (handle_icade_event(&code, &down))
character = 0;
else
code = 0;
}
else if (settings->input.small_keyboard_enable)
else if (settings->bools.input_small_keyboard_enable)
{
if (handle_small_keyboard(&code, down))
character = 0;