(iOS) Buildfix
This commit is contained in:
parent
c4786ea543
commit
b7c8ea67d8
|
@ -903,6 +903,10 @@ static void zarch_render(void)
|
||||||
|
|
||||||
if (!menu || !menu->userdata)
|
if (!menu || !menu->userdata)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
(void)settings;
|
||||||
|
(void)bottom;
|
||||||
|
(void)zarch;
|
||||||
|
|
||||||
video_driver_get_size(&width, &height);
|
video_driver_get_size(&width, &height);
|
||||||
|
|
||||||
|
@ -926,6 +930,8 @@ static void zarch_frame(void)
|
||||||
|
|
||||||
if (!gl)
|
if (!gl)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
(void)driver;
|
||||||
|
|
||||||
zui = (zui_t*)menu->userdata;
|
zui = (zui_t*)menu->userdata;
|
||||||
zui->set = config_get_ptr();
|
zui->set = config_get_ptr();
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
#include "../../../input/drivers/cocoa_input.h"
|
#include "../../../input/drivers/cocoa_input.h"
|
||||||
|
|
||||||
#include "../../../menu/menu_entry.h"
|
#include "../../../menu/menu_entry.h"
|
||||||
|
#include "../../../menu/drivers/menu_generic.h"
|
||||||
#include "../../../runloop_data.h"
|
#include "../../../runloop_data.h"
|
||||||
|
|
||||||
// Menu Support
|
// Menu Support
|
||||||
|
@ -612,7 +613,7 @@ didSelectRowAtIndexPath:(NSIndexPath *)indexPath
|
||||||
switch (buttonIndex)
|
switch (buttonIndex)
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
menu_iterate(true, MENU_ACTION_OK);
|
generic_menu_iterate(true, MENU_ACTION_OK);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue