Fix build without HAVE_FBO

This commit is contained in:
OV2 2013-03-30 14:48:33 +01:00
parent 0c3b1a7514
commit 4c4bbf3cf0

View File

@ -282,9 +282,11 @@ uintptr_t driver_get_current_framebuffer(void)
retro_proc_address_t driver_get_proc_address(const char *sym)
{
#ifdef HAVE_FBO
if (driver.video_poke && driver.video_poke->get_proc_address)
return driver.video_poke->get_proc_address(driver.video_data, sym);
else
#endif
return NULL;
}