* make savestate SRAM reloc disabled by default (confusing behavior)

* add config entry for keeping track of whether the main window is maximized
This commit is contained in:
StapleButter 2018-12-30 00:44:07 +01:00
parent 1cf49e0dbe
commit 62704aee31
2 changed files with 4 additions and 1 deletions

View File

@ -39,6 +39,7 @@ int HKJoyMapping[HK_MAX];
int WindowWidth;
int WindowHeight;
int WindowMaximized;
int ScreenRotation;
int ScreenGap;
@ -109,6 +110,7 @@ ConfigEntry ConfigFile[] =
{"WindowWidth", 0, &WindowWidth, 256, NULL, 0},
{"WindowHeight", 0, &WindowHeight, 384, NULL, 0},
{"WindowMax", 0, &WindowMaximized, 0, NULL, 0},
{"ScreenRotation", 0, &ScreenRotation, 0, NULL, 0},
{"ScreenGap", 0, &ScreenGap, 0, NULL, 0},
@ -124,7 +126,7 @@ ConfigEntry ConfigFile[] =
{"SockBindAnyAddr", 0, &SocketBindAnyAddr, 0, NULL, 0},
{"SavStaRelocSRAM", 0, &SavestateRelocSRAM, 1, NULL, 0},
{"SavStaRelocSRAM", 0, &SavestateRelocSRAM, 0, NULL, 0},
{"AudioVolume", 0, &AudioVolume, 256, NULL, 0},
{"MicInputType", 0, &MicInputType, 1, NULL, 0},

View File

@ -44,6 +44,7 @@ extern int HKJoyMapping[HK_MAX];
extern int WindowWidth;
extern int WindowHeight;
extern int WindowMaximized;
extern int ScreenRotation;
extern int ScreenGap;