1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-04 04:50:22 +00:00

Tidy up parts/core/src.c

This commit is contained in:
Luke Ceddia 2018-01-09 22:38:07 +11:00
parent 3a0e1ae320
commit a1a0536d69
2 changed files with 2 additions and 17 deletions

View file

@ -39,6 +39,7 @@
//core //core
#ifdef QB64_GUI #ifdef QB64_GUI
#ifdef QB64_GLUT #ifdef QB64_GLUT
//This file only contains header stuff
#include "parts/core/src.c" #include "parts/core/src.c"
#endif #endif
#endif #endif
@ -51,7 +52,6 @@
#define int64 __int64 #define int64 __int64
#endif #endif
//#include <Shlobj.h>
#include <shfolder.h> #include <shfolder.h>
#include <float.h> #include <float.h>

View file

@ -2,12 +2,6 @@
#include "glew/include/GL/glew.h" #include "glew/include/GL/glew.h"
#endif #endif
#ifdef QB64_ANDROID
#include <EGL/egl.h>
#include <GLES/gl.h>
#include <GLES/glext.h>
#endif
#ifdef QB64_MACOSX #ifdef QB64_MACOSX
//note: MacOSX uses Apple's GLUT not FreeGLUT //note: MacOSX uses Apple's GLUT not FreeGLUT
#include <OpenGL/gl.h> #include <OpenGL/gl.h>
@ -16,14 +10,5 @@
#include <GLUT/glut.h> #include <GLUT/glut.h>
#else #else
#define CORE_FREEGLUT #define CORE_FREEGLUT
#ifdef QB64_ANDROID #include "src/freeglut.h"
#include "android_core/include/GL/freeglut.h"
#include "glues/src/glues.h"
#else
#ifdef QB64_BACKSLASH_FILESYSTEM
#include "src\\freeglut.h"
#else
#include "src/freeglut.h"
#endif
#endif
#endif #endif