From f29d590973904ebf7775d36691ca3a0a2c412f86 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 19 Dec 2013 02:41:48 +0100 Subject: [PATCH] (Apple) Add location driver for Apple to location_drivers array --- driver.c | 1 + driver.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/driver.c b/driver.c index 7bed8088ac..bd8f58c769 100644 --- a/driver.c +++ b/driver.c @@ -303,6 +303,7 @@ static const location_driver_t *location_drivers[] = { #ifdef ANDROID #endif #ifdef IOS + &location_apple, #endif NULL, }; diff --git a/driver.h b/driver.h index 63e68dc73b..3fe349d373 100644 --- a/driver.h +++ b/driver.h @@ -657,6 +657,8 @@ extern const camera_driver_t camera_v4l2; extern const camera_driver_t camera_android; extern const camera_driver_t camera_rwebcam; extern const camera_driver_t camera_ios; +extern const camera_driver_t location_apple; +extern const camera_driver_t location_android; extern const input_osk_driver_t input_ps3_osk; #include "driver_funcs.h"