(Wii) Buildfix

This commit is contained in:
twinaphex 2015-03-23 04:32:12 +01:00
parent 0d164162fc
commit 42b054771a
2 changed files with 4 additions and 0 deletions

View File

@ -785,6 +785,7 @@ bool video_driver_focus(void)
return driver->video->focus(driver->video_data);
}
#ifdef HAVE_OVERLAY
bool video_driver_overlay_interface(const video_overlay_interface_t **iface)
{
driver_t *driver = driver_get_ptr();
@ -799,6 +800,7 @@ bool video_driver_overlay_interface(const video_overlay_interface_t **iface)
return true;
}
#endif
void * video_driver_read_frame_raw(unsigned *width,
unsigned *height, size_t *pitch)

View File

@ -305,7 +305,9 @@ bool video_driver_set_shader(enum rarch_shader_type type,
bool video_driver_focus(void);
#ifdef HAVE_OVERLAY
bool video_driver_overlay_interface(const video_overlay_interface_t **iface);
#endif
void * video_driver_read_frame_raw(unsigned *width,
unsigned *height, size_t *pitch);