Change input_driver_ctl calls to input_keyboard_ctl

This commit is contained in:
twinaphex 2016-03-23 06:19:33 +01:00
parent 2fee5edba4
commit 56c47bbe56

View File

@ -52,9 +52,9 @@ static void input_keyboard_line_toggle_osk(bool enable)
return;
if (enable)
input_driver_ctl(RARCH_INPUT_KEYBOARD_CTL_SET_LINEFEED_ENABLED, NULL);
input_keyboard_ctl(RARCH_INPUT_KEYBOARD_CTL_SET_LINEFEED_ENABLED, NULL);
else
input_driver_ctl(RARCH_INPUT_KEYBOARD_CTL_UNSET_LINEFEED_ENABLED, NULL);
input_keyboard_ctl(RARCH_INPUT_KEYBOARD_CTL_UNSET_LINEFEED_ENABLED, NULL);
}
/**