Move camera_driver.c to camera/
This commit is contained in:
parent
4b0bd67d8d
commit
f45d9efb37
|
@ -101,7 +101,7 @@ OBJ += frontend/frontend.o \
|
||||||
input/input_driver.o \
|
input/input_driver.o \
|
||||||
gfx/video_driver.o \
|
gfx/video_driver.o \
|
||||||
osk/osk_driver.o \
|
osk/osk_driver.o \
|
||||||
camera_driver.o \
|
camera/camera_driver.o \
|
||||||
driver.o \
|
driver.o \
|
||||||
settings.o \
|
settings.o \
|
||||||
settings_list.o \
|
settings_list.o \
|
||||||
|
|
|
@ -17,8 +17,8 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <string/string_list.h>
|
#include <string/string_list.h>
|
||||||
#include "camera_driver.h"
|
#include "camera_driver.h"
|
||||||
#include "driver.h"
|
#include "../driver.h"
|
||||||
#include "general.h"
|
#include "../general.h"
|
||||||
|
|
||||||
static const camera_driver_t *camera_drivers[] = {
|
static const camera_driver_t *camera_drivers[] = {
|
||||||
#ifdef HAVE_V4L2
|
#ifdef HAVE_V4L2
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <boolean.h>
|
#include <boolean.h>
|
||||||
#include "libretro.h"
|
#include "../libretro.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
2
driver.h
2
driver.h
|
@ -32,7 +32,7 @@
|
||||||
|
|
||||||
#include "menu/menu_driver.h"
|
#include "menu/menu_driver.h"
|
||||||
#include "osk/osk_driver.h"
|
#include "osk/osk_driver.h"
|
||||||
#include "camera_driver.h"
|
#include "camera/camera_driver.h"
|
||||||
#include "audio/resamplers/resampler.h"
|
#include "audio/resamplers/resampler.h"
|
||||||
#include "record/ffemu.h"
|
#include "record/ffemu.h"
|
||||||
|
|
||||||
|
|
|
@ -500,7 +500,7 @@ DRIVERS
|
||||||
#include "../input/input_driver.c"
|
#include "../input/input_driver.c"
|
||||||
#include "../audio/audio_driver.c"
|
#include "../audio/audio_driver.c"
|
||||||
#include "../osk/osk_driver.c"
|
#include "../osk/osk_driver.c"
|
||||||
#include "../camera_driver.c"
|
#include "../camera/camera_driver.c"
|
||||||
#include "../driver.c"
|
#include "../driver.c"
|
||||||
|
|
||||||
/*============================================================
|
/*============================================================
|
||||||
|
|
Loading…
Reference in New Issue