mirror of
https://github.com/libretro/RetroArch
synced 2025-02-25 03:40:50 +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)
|
static void frontend_apple_load_content(void)
|
||||||
{
|
{
|
||||||
if ( driver.menu_ctx && driver.menu_ctx == &menu_ctx_ios && driver.menu && driver.menu->userdata ) {
|
#ifdef IOS
|
||||||
ios_handle_t *ih = (ios_handle_t*)driver.menu->userdata;
|
if ( driver.menu_ctx && driver.menu_ctx == &menu_ctx_ios && driver.menu && driver.menu->userdata )
|
||||||
ih->notify_content_loaded();
|
{
|
||||||
|
ios_handle_t *ih = (ios_handle_t*)driver.menu->userdata;
|
||||||
|
ih->notify_content_loaded();
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static void frontend_apple_shutdown(bool unused)
|
static void frontend_apple_shutdown(bool unused)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user