mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
(360) fix 360 build
This commit is contained in:
parent
3e6a10ffb6
commit
e9cf861f7f
1 changed files with 5 additions and 5 deletions
|
@ -51,11 +51,6 @@ void gfx_ctx_check_window(bool *quit,
|
|||
*resize = true;
|
||||
}
|
||||
|
||||
bool gfx_ctx_window_has_focus(void)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
void gfx_ctx_set_resize(unsigned width, unsigned height) { }
|
||||
|
||||
#ifndef HAVE_GRIFFIN
|
||||
|
@ -64,6 +59,11 @@ void gfx_ctx_swap_buffers(void)
|
|||
xdk360_video_t *d3d9 = (xdk360_video_t*)driver.video_data;
|
||||
d3d9->d3d_render_device->Present(NULL, NULL, NULL, NULL);
|
||||
}
|
||||
|
||||
bool gfx_ctx_window_has_focus(void)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
|
||||
bool gfx_ctx_menu_init(void)
|
||||
|
|
Loading…
Add table
Reference in a new issue