From d2207ffc9fd1cceda268c542f64683a97b7b9fa9 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 27 Feb 2013 08:35:49 +0100 Subject: [PATCH] (Playbook) Cleanup frontend_bbqnx.c --- frontend/frontend_bbqnx.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/frontend/frontend_bbqnx.c b/frontend/frontend_bbqnx.c index 53c409c955..4728fd7562 100644 --- a/frontend/frontend_bbqnx.c +++ b/frontend/frontend_bbqnx.c @@ -61,8 +61,6 @@ int rarch_main(int argc, char *argv[]) g_extern.verbose = true; - RARCH_LOG("Step 0.9\n"); - int init_ret; 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))) { - RARCH_LOG("Step 1.0a\n"); return init_ret; } - RARCH_LOG("Step 1.0\n"); 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()); - RARCH_LOG("Step 1.2\n"); rarch_main_deinit(); - RARCH_LOG("Step 1.3\n"); rarch_deinit_msg_queue(); - RARCH_LOG("Step 1.4\n"); #ifdef PERF_TEST rarch_perf_log(); #endif - RARCH_LOG("Step 1.5\n"); - error: screen_stop_events(screen_ctx); bps_shutdown(); - RARCH_LOG("Step 1.6\n"); - return 0; }