From 56c47bbe56ca8230e453dc69948e546b4f03d90e Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 23 Mar 2016 06:19:33 +0100 Subject: [PATCH] Change input_driver_ctl calls to input_keyboard_ctl --- input/input_keyboard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/input/input_keyboard.c b/input/input_keyboard.c index 62f3b302a9..bb25091e4a 100644 --- a/input/input_keyboard.c +++ b/input/input_keyboard.c @@ -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); } /**