mirror of
https://github.com/libretro/RetroArch
synced 2025-02-24 18:39:59 +00:00
(iOS) Add ifdef for menu_ctx_ios
This commit is contained in:
parent
31d816b6d3
commit
c518d35f18
@ -184,10 +184,13 @@ extern void apple_rarch_exited(void);
|
||||
|
||||
static void frontend_apple_load_content(void)
|
||||
{
|
||||
if ( driver.menu_ctx && driver.menu_ctx == &menu_ctx_ios && driver.menu && driver.menu->userdata ) {
|
||||
ios_handle_t *ih = (ios_handle_t*)driver.menu->userdata;
|
||||
ih->notify_content_loaded();
|
||||
#ifdef IOS
|
||||
if ( driver.menu_ctx && driver.menu_ctx == &menu_ctx_ios && driver.menu && driver.menu->userdata )
|
||||
{
|
||||
ios_handle_t *ih = (ios_handle_t*)driver.menu->userdata;
|
||||
ih->notify_content_loaded();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
static void frontend_apple_shutdown(bool unused)
|
||||
|
Loading…
x
Reference in New Issue
Block a user