Fix Windows Hardcoding (#3600)

Compiles on Linux & co. now
This commit is contained in:
mr sihc 2023-12-03 19:55:16 +01:00 committed by GitHub
parent f1b0d15813
commit 4ae2af0bcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -48,13 +48,13 @@
*
**********************************************************************************************/
#include "SDL.h" // SDL base library (window/rendered, input, timing... functionality)
#include "SDL2/SDL.h" // SDL base library (window/rendered, input, timing... functionality)
#if defined(GRAPHICS_API_OPENGL_ES2)
// It seems it does not need to be included to work
//#include "SDL_opengles2.h"
#else
#include "SDL_opengl.h" // SDL OpenGL functionality (if required, instead of internal renderer)
#include "SDL2/SDL_opengl.h" // SDL OpenGL functionality (if required, instead of internal renderer)
#endif
//----------------------------------------------------------------------------------