mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 16:39:43 +00:00
(Xbox 1) Build fix
This commit is contained in:
parent
9976b81f18
commit
b06da6e259
@ -32,6 +32,11 @@
|
||||
#define XBOX_PRESENTATIONINTERVAL D3DRS_PRESENTINTERVAL
|
||||
#endif
|
||||
|
||||
void gfx_ctx_set_blend(bool enable)
|
||||
{
|
||||
(void)enable;
|
||||
}
|
||||
|
||||
void gfx_ctx_set_swap_interval(unsigned interval, bool inited)
|
||||
{
|
||||
(void)inited;
|
||||
|
@ -683,7 +683,7 @@ static void browser_render(filebrowser_t *b, float current_x, float current_y, f
|
||||
#endif
|
||||
}
|
||||
|
||||
static void menu_romselect_iterate(filebrowser_t *filebrowser, menu_romselect_action_t action)
|
||||
static void menu_romselect_iterate(filebrowser_t *filebrowser, item *items, menu_romselect_action_t action)
|
||||
{
|
||||
bool ret = true;
|
||||
|
||||
@ -723,7 +723,7 @@ static void select_rom(item *items, menu *current_menu, uint64_t input)
|
||||
}
|
||||
|
||||
if (action != MENU_ROMSELECT_ACTION_NOOP)
|
||||
menu_romselect_iterate(&browser, action);
|
||||
menu_romselect_iterate(&browser, items, action);
|
||||
|
||||
display_menubar(current_menu);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user