浏览代码

Fix Windows Hardcoding (#3600)

Compiles on Linux & co. now
pull/3602/head
mr sihc 1年前
committed by GitHub
父节点
当前提交
4ae2af0bcc
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 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)
// 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
//----------------------------------------------------------------------------------

正在加载...
取消
保存