aboutsummaryrefslogtreecommitdiff
path: root/src/core.c
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2016-08-26 19:40:37 +0200
committerraysan5 <raysan5@gmail.com>2016-08-26 19:40:37 +0200
commit4770e2010d2451d28305bea874f81e50ed6560f5 (patch)
tree52defea443cc02eeb384a81f7386afeb0e4290da /src/core.c
parent5d88eb1d95b188fad1d84994f45291febe9fa6c1 (diff)
downloadraylib-4770e2010d2451d28305bea874f81e50ed6560f5.tar.gz
raylib-4770e2010d2451d28305bea874f81e50ed6560f5.zip
Review Android project
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core.c b/src/core.c
index a76fe0be..81c2942a 100644
--- a/src/core.c
+++ b/src/core.c
@@ -48,8 +48,10 @@
#define GESTURES_IMPLEMENTATION
#include "gestures.h" // Gestures detection functionality
-#define CAMERA_IMPLEMENTATION
-#include "camera.h" // Camera system functionality
+#if !defined(PLATFORM_ANDROID)
+ #define CAMERA_IMPLEMENTATION
+ #include "camera.h" // Camera system functionality
+#endif
#include <stdio.h> // Standard input / output lib
#include <stdlib.h> // Declares malloc() and free() for memory management, rand(), atexit()