(Xbox 1) Build fix

This commit is contained in:
twinaphex 2012-08-03 18:10:00 +02:00
parent 9976b81f18
commit b06da6e259
2 changed files with 7 additions and 2 deletions

View File

@ -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;

View File

@ -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);