1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-04 13:20:15 +00:00

(Driver) - Only push camera/location driver disabled message if first condition

fails
- Add further runtime check - checking if driver->start is bound
This commit is contained in:
twinaphex 2014-05-26 20:49:06 +02:00
parent 40f7e80745
commit f106a1cfaa
2 changed files with 6 additions and 6 deletions

@ -76,11 +76,11 @@ void find_next_camera_driver(void)
bool driver_camera_start(void)
{
if (driver.camera && driver.camera_data)
if (driver.camera && driver.camera_data && driver.camera->start)
{
if (g_settings.camera.allow)
return driver.camera->start(driver.camera_data);
else
msg_queue_push(g_extern.msg_queue, "Camera is explicitly disabled.\n", 1, 180);
return false;
}

@ -70,11 +70,11 @@ void find_next_location_driver(void)
bool driver_location_start(void)
{
if (driver.location && driver.location_data)
if (driver.location && driver.location_data && driver.location->start)
{
if (g_settings.location.allow)
return driver.location->start(driver.location_data);
else
msg_queue_push(g_extern.msg_queue, "Location is explicitly disabled.\n", 1, 180);
return false;
}