From fec69828a9f33e6746eac40a0a6656a0f96d0424 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 26 May 2020 08:49:59 +0200 Subject: [PATCH] Cleanup --- retroarch.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/retroarch.c b/retroarch.c index 0f8157de16..a2cc42ef49 100644 --- a/retroarch.c +++ b/retroarch.c @@ -7285,10 +7285,9 @@ bool command_event(enum event_command cmd, void *data) bool ai_service_pause = settings->bools.ai_service_pause; if (!settings->bools.ai_service_enable) - { break; - } - else if (ai_service_pause) + + if (ai_service_pause) { /* pause on call, unpause on second press. */ if (!p_rarch->runloop_paused) @@ -7405,7 +7404,7 @@ bool command_event(enum event_command cmd, void *data) break; case CMD_EVENT_LOAD_CORE: { - bool success = false; + bool success = false; subsystem_current_count = 0; content_clear_subsystem(); success = command_event(CMD_EVENT_LOAD_CORE_PERSIST, NULL);