Fixed build error on Linux

Sam Lantinga 2017-05-09 03:19:58 -07:00
parent 9ac3bb7011
commit 8b7ae35356
1 changed files with 6 additions and 1 deletions

View File

@ -3857,6 +3857,9 @@ SDL_ComputeDiagonalDPI(int hpix, int vpix, float hinches, float vinches)
SDL_sqrt((double)den2));
}
/*
* Functions used by iOS application delegates
*/
void SDL_OnApplicationWillTerminate()
{
SDL_SendAppEvent(SDL_APP_TERMINATING);
@ -3870,6 +3873,7 @@ void SDL_OnApplicationDidReceiveMemoryWarning()
void SDL_OnApplicationWillResignActive()
{
SDL_VideoDevice *_this = SDL_GetVideoDevice();
if (_this) {
SDL_Window *window;
for (window = _this->windows; window != NULL; window = window->next) {
@ -3892,9 +3896,10 @@ void SDL_OnApplicationWillEnterForeground()
void SDL_OnApplicationDidBecomeActive()
{
SDL_VideoDevice *_this = SDL_GetVideoDevice();
SDL_SendAppEvent(SDL_APP_DIDENTERFOREGROUND);
SDL_VideoDevice *_this = SDL_GetVideoDevice();
if (_this) {
SDL_Window *window;
for (window = _this->windows; window != NULL; window = window->next) {