(Playbook) Cleanup frontend_bbqnx.c

This commit is contained in:
twinaphex 2013-02-27 08:35:49 +01:00
parent 9b9c280f2b
commit d2207ffc9f

View File

@ -61,8 +61,6 @@ int rarch_main(int argc, char *argv[])
g_extern.verbose = true; g_extern.verbose = true;
RARCH_LOG("Step 0.9\n");
int init_ret; int init_ret;
struct rarch_main_wrap args = {0}; struct rarch_main_wrap args = {0};
@ -75,30 +73,20 @@ int rarch_main(int argc, char *argv[])
if ((init_ret = rarch_main_init_wrap(&args))) if ((init_ret = rarch_main_init_wrap(&args)))
{ {
RARCH_LOG("Step 1.0a\n");
return init_ret; return init_ret;
} }
RARCH_LOG("Step 1.0\n");
rarch_init_msg_queue(); rarch_init_msg_queue();
RARCH_LOG("Step 1.1\n");
while ((g_extern.is_paused && !g_extern.is_oneshot) ? rarch_main_idle_iterate() : rarch_main_iterate()); while ((g_extern.is_paused && !g_extern.is_oneshot) ? rarch_main_idle_iterate() : rarch_main_iterate());
RARCH_LOG("Step 1.2\n");
rarch_main_deinit(); rarch_main_deinit();
RARCH_LOG("Step 1.3\n");
rarch_deinit_msg_queue(); rarch_deinit_msg_queue();
RARCH_LOG("Step 1.4\n");
#ifdef PERF_TEST #ifdef PERF_TEST
rarch_perf_log(); rarch_perf_log();
#endif #endif
RARCH_LOG("Step 1.5\n");
error: error:
screen_stop_events(screen_ctx); screen_stop_events(screen_ctx);
bps_shutdown(); bps_shutdown();
RARCH_LOG("Step 1.6\n");
return 0; return 0;
} }