Some minor changes to rarch_main_iterate

This commit is contained in:
twinaphex 2015-01-11 18:00:50 +01:00
parent fae8a8d8d7
commit 8f41438410
1 changed files with 3 additions and 3 deletions

View File

@ -984,8 +984,8 @@ success:
limit_frame_time(); limit_frame_time();
quit: quit:
if (ret == -1) if (ret != -1)
return rarch_main_iterate_quit(); return ret;
return ret; return rarch_main_iterate_quit();
} }