mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 08:59:58 +00:00
Derp, call context_reset after init_menu.
This commit is contained in:
parent
a40e17a2c1
commit
41e770eb0c
5
driver.c
5
driver.c
@ -549,9 +549,6 @@ void init_drivers(void)
|
||||
g_extern.system.hw_render_callback.context_reset();
|
||||
driver.video_cache_context_ack = false;
|
||||
|
||||
if (driver.menu_ctx && driver.menu_ctx->context_reset)
|
||||
driver.menu_ctx->context_reset(driver.menu);
|
||||
|
||||
init_audio();
|
||||
|
||||
#ifdef HAVE_CAMERA
|
||||
@ -572,6 +569,8 @@ void init_drivers(void)
|
||||
|
||||
#ifdef HAVE_MENU
|
||||
init_menu();
|
||||
if (driver.menu_ctx && driver.menu_ctx->context_reset)
|
||||
driver.menu_ctx->context_reset(driver.menu);
|
||||
#endif
|
||||
|
||||
// Keep non-throttled state as good as possible.
|
||||
|
Loading…
Reference in New Issue
Block a user