1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-02 03:50:36 +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
#ifdef QB64_GUI
#ifdef QB64_GLUT
//This file only contains header stuff
#include "parts/core/src.c"
#endif
#endif
@ -51,7 +52,6 @@
#define int64 __int64
#endif
//#include <Shlobj.h>
#include <shfolder.h>
#include <float.h>

View file

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