From 5c4e3ad87e5576dba2b9873cf3f7321242a1e893 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 29 Sep 2016 12:13:46 +0200 Subject: [PATCH] location_driver_ctl - return 'true' by default --- location/location_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/location/location_driver.c b/location/location_driver.c index 9f06d71b98..88baefea74 100644 --- a/location/location_driver.c +++ b/location/location_driver.c @@ -281,5 +281,5 @@ bool location_driver_ctl(enum rarch_location_ctl_state state, void *data) break; } - return false; + return true; }