소스 검색

Fix Windows Hardcoding (#3600)

Compiles on Linux & co. now
mr sihc 1 년 전
부모
커밋
4ae2af0bcc
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/platforms/rcore_desktop_sdl.c

+ 2 - 2
src/platforms/rcore_desktop_sdl.c

@@ -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)
 #if defined(GRAPHICS_API_OPENGL_ES2)
     // It seems it does not need to be included to work
     // It seems it does not need to be included to work
     //#include "SDL_opengles2.h"
     //#include "SDL_opengles2.h"
 #else
 #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
 #endif
 
 
 //----------------------------------------------------------------------------------
 //----------------------------------------------------------------------------------