mirror of https://github.com/encounter/SDL.git
Fixed warning in Android build
This commit is contained in:
parent
107c19daad
commit
9171f71dbe
|
@ -25,6 +25,9 @@
|
||||||
#if SDL_VIDEO_DRIVER_WINDOWS || SDL_VIDEO_DRIVER_WINRT
|
#if SDL_VIDEO_DRIVER_WINDOWS || SDL_VIDEO_DRIVER_WINRT
|
||||||
#include "../core/windows/SDL_windows.h"
|
#include "../core/windows/SDL_windows.h"
|
||||||
#endif
|
#endif
|
||||||
|
#if SDL_VIDEO_DRIVER_ANDROID
|
||||||
|
#include <android/native_window.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "SDL_sysvideo.h"
|
#include "SDL_sysvideo.h"
|
||||||
#include "SDL_egl_c.h"
|
#include "SDL_egl_c.h"
|
||||||
|
@ -642,7 +645,7 @@ SDL_EGL_CreateSurface(_THIS, NativeWindowType nw)
|
||||||
return EGL_NO_SURFACE;
|
return EGL_NO_SURFACE;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if __ANDROID__
|
#if SDL_VIDEO_DRIVER_ANDROID
|
||||||
{
|
{
|
||||||
/* Android docs recommend doing this!
|
/* Android docs recommend doing this!
|
||||||
* Ref: http://developer.android.com/reference/android/app/NativeActivity.html
|
* Ref: http://developer.android.com/reference/android/app/NativeActivity.html
|
||||||
|
|
Loading…
Reference in New Issue