One more videomode for SDL

This commit is contained in:
Sergii Pylypenko
2013-11-25 20:19:44 +02:00
parent dde8121674
commit aa83519892

View File

@@ -116,7 +116,7 @@ int ANDROID_ToggleFullScreen(_THIS, int fullscreen)
return 1;
}
enum { SDL_NUMMODES = 56 };
enum { SDL_NUMMODES = 57 };
static SDL_Rect *SDL_modelist[SDL_NUMMODES+1];
//#define SDL_modelist (this->hidden->SDL_modelist)
@@ -324,7 +324,8 @@ int ANDROID_VideoInit(_THIS, SDL_PixelFormat *vformat)
SDL_modelist[53]->w = 768; SDL_modelist[53]->h = 262; // For UAE4ALL2
SDL_modelist[54]->w = 768; SDL_modelist[54]->h = 270; // For UAE4ALL2
SDL_modelist[55]->w = 1280; SDL_modelist[55]->h = 960; // For UQM-HD
SDL_modelist[56] = NULL;
SDL_modelist[56]->w = 960; SDL_modelist[56]->h = 600; // For ScummVM 3x-mode
SDL_modelist[57] = NULL;
// If you going to add another video mode, increase SDL_NUMMODES constant
SDL_VideoInit_1_3(NULL, 0);