(svn r2955) Fix: make ottd start with the last resolution you had set (custom) (win32)

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
Darkvater 19 years ago
parent e9401f09a7
commit 1419244551

@ -1974,8 +1974,6 @@ bool ChangeResInGame(int w, int h)
if ((_screen.width != w || _screen.height != h) && !_video_driver->change_resolution(w, h))
return false;
_cur_resolution[0] = w;
_cur_resolution[1] = h;
return true;
}

@ -2478,6 +2478,8 @@ void ShowVitalWindows(void)
void GameSizeChanged(void)
{
_cur_resolution[0] = _screen.width;
_cur_resolution[1] = _screen.height;
RelocateAllWindows(_screen.width, _screen.height);
ScreenSizeChanged();
MarkWholeScreenDirty();

Loading…
Cancel
Save