Revert "Create public init_menu/uninit_menu"

This reverts commit 8f7e9edd8819fdc1281a069fa06aadaa772b30e3.
This commit is contained in:
twinaphex 2014-06-06 00:51:56 +02:00
parent e91bcd5f6d
commit d3301083ac
2 changed files with 11 additions and 21 deletions

View File

@ -506,7 +506,7 @@ bool driver_update_system_av_info(const struct retro_system_av_info *info)
}
#ifdef HAVE_MENU
void init_menu(void)
static void init_menu(void)
{
if (driver.menu)
return;
@ -517,9 +517,6 @@ void init_menu(void)
RARCH_ERR("Cannot initialize menu.\n");
rarch_fail(1, "init_menu()");
}
if (driver.menu && driver.menu_ctx && driver.menu_ctx->context_reset)
driver.menu_ctx->context_reset(driver.menu);
}
#endif
@ -572,6 +569,9 @@ void init_drivers(void)
#ifdef HAVE_MENU
init_menu();
if (driver.menu && driver.menu_ctx && driver.menu_ctx->context_reset)
driver.menu_ctx->context_reset(driver.menu);
#endif
// Keep non-throttled state as good as possible.
@ -629,9 +629,14 @@ static void compute_monitor_fps_statistics(void)
}
}
#ifdef HAVE_MENU
void uninit_menu(void)
void uninit_drivers(void)
{
uninit_audio();
if (g_extern.system.hw_render_callback.context_destroy && !driver.video_cache_context)
g_extern.system.hw_render_callback.context_destroy();
#ifdef HAVE_MENU
if (driver.menu && driver.menu_ctx && driver.menu_ctx->context_destroy)
driver.menu_ctx->context_destroy(driver.menu);
@ -640,18 +645,8 @@ void uninit_menu(void)
menu_free(driver.menu);
driver.menu = NULL;
}
}
#endif
void uninit_drivers(void)
{
uninit_audio();
if (g_extern.system.hw_render_callback.context_destroy && !driver.video_cache_context)
g_extern.system.hw_render_callback.context_destroy();
uninit_menu();
uninit_video_input();
if (!driver.video_data_own)

View File

@ -746,11 +746,6 @@ int rarch_main(int argc, char *argv[]);
#define MAX_ARGS 32
#endif
#ifdef HAVE_MENU
void init_menu(void);
void uninit_menu(void);
#endif
void rarch_main_init_wrap(const struct rarch_main_wrap *args, int *argc, char **argv);
int rarch_main_init(int argc, char *argv[]);