Changed minimum allowed resolution to QVGA
This commit is contained in:
parent
ed6151df5d
commit
038f7372e4
|
@ -128,8 +128,8 @@ void EventThread::process(RGSSThreadData &rtData)
|
||||||
defScreenH = rtData.config.defScreenH;
|
defScreenH = rtData.config.defScreenH;
|
||||||
SDL_GetDesktopDisplayMode(0, &dm);
|
SDL_GetDesktopDisplayMode(0, &dm);
|
||||||
SDL_SetWindowMaximumSize(win, dm.w, dm.h);
|
SDL_SetWindowMaximumSize(win, dm.w, dm.h);
|
||||||
SDL_SetWindowMinimumSize(win, 544, 416);
|
SDL_SetWindowMinimumSize(win, 320, 240);
|
||||||
SDL_SetWindowSize(win, 544, 416);
|
SDL_SetWindowSize(win, 320, 240);
|
||||||
int defScreenW_new, defScreenH_new;
|
int defScreenW_new, defScreenH_new;
|
||||||
int firstrun;
|
int firstrun;
|
||||||
firstrun = 0;
|
firstrun = 0;
|
||||||
|
|
Loading…
Reference in New Issue