mirror of
https://github.com/Ryujinx/SDL.git
synced 2024-12-24 19:35:34 +00:00
Fixed pointer from integer warning and bug if compiled without EGL.
This commit is contained in:
parent
b2faf3f08d
commit
87ad7a1c50
|
@ -604,7 +604,8 @@ WIN_GL_CreateContext(_THIS, SDL_Window * window)
|
|||
|
||||
return WIN_GLES_CreateContext(_this, window);
|
||||
#else
|
||||
return SDL_SetError("SDL not configured with EGL support");
|
||||
SDL_SetError("SDL not configured with EGL support");
|
||||
return NULL;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue