From 67fdd532635d3926f406a8c7c1138686d577b47d Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 27 Sep 2018 18:58:18 +0200 Subject: [PATCH] implement recording/streaming hotkeys --- retroarch.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/retroarch.c b/retroarch.c index e80350e718..b640c02939 100644 --- a/retroarch.c +++ b/retroarch.c @@ -2929,10 +2929,7 @@ static enum runloop_state runloop_check_state( current_input, RARCH_RECORDING_TOGGLE); if (pressed && !old_pressed) - { - /* TODO/FIXME */ - /* insert logic here */ - } + command_event(RARCH_RECORDING_TOGGLE, NULL); old_pressed = pressed; } @@ -2944,10 +2941,7 @@ static enum runloop_state runloop_check_state( current_input, RARCH_STREAMING_TOGGLE); if (pressed && !old_pressed) - { - /* TODO/FIXME */ - /* insert logic here */ - } + command_event(RARCH_STREAMING_TOGGLE, NULL); old_pressed = pressed; }