GUI: remember window size

This commit is contained in:
tildearrow 2022-01-29 17:27:51 -05:00
parent ab814604b5
commit adbe70fa05
1 changed files with 7 additions and 0 deletions

View File

@ -5356,6 +5356,9 @@ bool FurnaceGUI::init() {
SDL_Surface* icon=SDL_CreateRGBSurfaceFrom(furIcon,256,256,32,256*4,0xff,0xff00,0xff0000,0xff000000);
#endif
scrW=e->getConfInt("lastWindowWidth",1280);
scrH=e->getConfInt("lastWindowHeight",800);
SDL_Rect displaySize;
sdlWin=SDL_CreateWindow("Furnace",SDL_WINDOWPOS_CENTERED,SDL_WINDOWPOS_CENTERED,scrW*dpiScale,scrH*dpiScale,SDL_WINDOW_RESIZABLE|SDL_WINDOW_ALLOW_HIGHDPI);
@ -5450,6 +5453,10 @@ bool FurnaceGUI::finish() {
e->setConf("mixerOpen",mixerOpen);
e->setConf("oscOpen",oscOpen);
// commit last window size
e->setConf("lastWindowWidth",scrW);
e->setConf("lastWindowHeight",scrH);
for (int i=0; i<DIV_MAX_CHANS; i++) {
delete oldPat[i];
}