1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-09-30 02:42:12 +02:00

Merge pull request #23 from ncblakely/users/tos/modefix

Use value instead of index of mode selection.
This commit is contained in:
ncblakely 2022-11-09 19:46:55 -08:00 committed by GitHub
commit ac6235d845
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -312,7 +312,7 @@ namespace Giants.Launcher
GameSettings.Modify(RegistryKeys.Antialiasing, this.cmbAntialiasing.SelectedValue);
GameSettings.Modify(RegistryKeys.AnisotropicFiltering, this.cmbAnisotropy.SelectedValue);
bool windowed = (WindowType)this.cmbMode.SelectedIndex == WindowType.Windowed;
bool windowed = (WindowType)this.cmbMode.SelectedValue == WindowType.Windowed;
GameSettings.Modify(RegistryKeys.Windowed, windowed == true ? 1 : 0);
GameSettings.Modify(RegistryKeys.VerticalSync, this.chkVSync.Checked == true ? 1 : 0);
GameSettings.Modify(RegistryKeys.TripleBuffering, this.chkTripleBuffering.Checked == true ? 1 : 0);