From 7981d80f11eca7783f1766939dd8be978609baf9 Mon Sep 17 00:00:00 2001 From: Tim Pequignot Date: Sat, 10 Nov 2018 20:13:31 -0600 Subject: [PATCH] More bad copy/paste line ending fixes, actually builds now --- app/src/input_manager.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/src/input_manager.c b/app/src/input_manager.c index 7b165143..e0ea0b02 100644 --- a/app/src/input_manager.c +++ b/app/src/input_manager.c @@ -84,19 +84,19 @@ static inline void action_menu(struct controller *controller, int actions) { send_keycode(controller, AKEYCODE_MENU, actions, "MENU"); } -static inline void action_media_playpause(struct controller *controller, int ac$ - send_keycode(controller, AKEYCODE_MEDIA_PLAY_PAUSE, actions, "MEDIA_PLAYPAU$ +static inline void action_media_playpause(struct controller *controller, int actions) { + send_keycode(controller, AKEYCODE_MEDIA_PLAY_PAUSE, actions, "MEDIA_PLAYPAUSE"); } -static inline void action_media_next(struct controller *controller, int actions$ +static inline void action_media_next(struct controller *controller, int actions) { send_keycode(controller, AKEYCODE_MEDIA_NEXT, actions, "MEDIA_NEXT"); } -static inline void action_media_previous(struct controller *controller, int act$ +static inline void action_media_previous(struct controller *controller, int actions) { send_keycode(controller, AKEYCODE_MEDIA_PREVIOUS, actions, "MEDIA_PREVIOUS"); } -static inline void action_voice_assist(struct controller *controller, int actio$ +static inline void action_voice_assist(struct controller *controller, int actions) { send_keycode(controller, AKEYCODE_VOICE_ASSIST, actions, "VOICE_ASSIST"); }