remove debugging #defines

This commit is contained in:
michaelfiber 2023-09-18 12:16:42 -04:00
parent 968780bce8
commit ed5a68e6fb
4 changed files with 0 additions and 12 deletions

View File

@ -1,8 +1,5 @@
#include <stdlib.h> #include <stdlib.h>
// for debugging
#define PLATFORM_ANDROID
#include "rcore.h" #include "rcore.h"
//#include <android/sensor.h> // Required for: Android sensors functions (accelerometer, gyroscope, light...) //#include <android/sensor.h> // Required for: Android sensors functions (accelerometer, gyroscope, light...)

View File

@ -1,8 +1,5 @@
#include <stdlib.h> #include <stdlib.h>
// for debugging
#define PLATFORM_DESKTOP
#include "rcore.h" #include "rcore.h"
#define GLFW_INCLUDE_NONE // Disable the standard OpenGL header inclusion on GLFW3 #define GLFW_INCLUDE_NONE // Disable the standard OpenGL header inclusion on GLFW3

View File

@ -1,8 +1,5 @@
#include <stdlib.h> #include <stdlib.h>
// for debugging
#define PLATFORM_DRM
#include "rcore.h" #include "rcore.h"
#include <fcntl.h> // POSIX file control definitions - open(), creat(), fcntl() #include <fcntl.h> // POSIX file control definitions - open(), creat(), fcntl()

View File

@ -1,8 +1,5 @@
#include <stdlib.h> #include <stdlib.h>
// for debugging
#define PLATFORM_WEB
#include "rcore.h" #include "rcore.h"
#define GLFW_INCLUDE_ES2 // GLFW3: Enable OpenGL ES 2.0 (translated to WebGL) #define GLFW_INCLUDE_ES2 // GLFW3: Enable OpenGL ES 2.0 (translated to WebGL)