From 44137e853f1953b9c57b1af7a34b180fd43ed23b Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 5 Oct 2014 18:02:01 +0200 Subject: [PATCH] Get rid of label - gets rid of warning for Wii/GX --- runloop.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/runloop.c b/runloop.c index c90542efa1..0e1055cdb6 100644 --- a/runloop.c +++ b/runloop.c @@ -447,7 +447,7 @@ static int do_state_checks( if (driver.netplay_data) { check_netplay_flip_func(trigger_input); - goto exit; + return 0; } #endif check_pause_func(trigger_input); @@ -493,7 +493,6 @@ static int do_state_checks( if (BIT64_GET(trigger_input, RARCH_RESET)) rarch_main_command(RARCH_CMD_RESET); -exit: return 0; }