mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-13 13:28:49 +00:00
Move location drivers to location/drivers/
This commit is contained in:
parent
444adb622f
commit
6a9d24b10a
@ -141,7 +141,7 @@ OBJ += frontend/frontend.o \
|
||||
audio/resamplers/sinc.o \
|
||||
audio/resamplers/nearest.o \
|
||||
audio/resamplers/cc_resampler.o \
|
||||
location/nulllocation.o \
|
||||
location/drivers/nulllocation.o \
|
||||
camera/drivers/nullcamera.o \
|
||||
gfx/drivers/nullgfx.o \
|
||||
audio/drivers/nullaudio.o \
|
||||
|
@ -433,10 +433,10 @@ CAMERA
|
||||
LOCATION
|
||||
============================================================ */
|
||||
#if defined(ANDROID)
|
||||
#include "../location/android.c"
|
||||
#include "../location/drivers/android.c"
|
||||
#endif
|
||||
|
||||
#include "../location/nulllocation.c"
|
||||
#include "../location/drivers/nulllocation.c"
|
||||
|
||||
/*============================================================
|
||||
RSOUND
|
||||
|
@ -14,7 +14,7 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "../driver.h"
|
||||
#include "../../driver.h"
|
||||
|
||||
typedef struct android_location
|
||||
{
|
@ -14,7 +14,7 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "../driver.h"
|
||||
#include "../../driver.h"
|
||||
|
||||
static void *null_location_init(void)
|
||||
{
|
Loading…
Reference in New Issue
Block a user