mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-07-04 16:21:34 +00:00
Merge pull request #1621
This commit is contained in:
commit
96c2b9374f
1 changed files with 4 additions and 1 deletions
|
@ -73,7 +73,10 @@ void Launcher::AdvancedPage::saveSettings()
|
||||||
|
|
||||||
// Saves Settings
|
// Saves Settings
|
||||||
saveSettingBool(timePlayedCheckbox, "timeplayed", "Saves");
|
saveSettingBool(timePlayedCheckbox, "timeplayed", "Saves");
|
||||||
mEngineSettings.setInt("max quicksaves", "Saves", maximumQuicksavesComboBox->value());
|
int maximumQuicksaves = maximumQuicksavesComboBox->value();
|
||||||
|
if (maximumQuicksaves != mEngineSettings.getInt("max quicksaves", "Saves")) {
|
||||||
|
mEngineSettings.setInt("max quicksaves", "Saves", maximumQuicksaves);
|
||||||
|
}
|
||||||
|
|
||||||
// Other Settings
|
// Other Settings
|
||||||
std::string screenshotFormatString = screenshotFormatComboBox->currentText().toLower().toStdString();
|
std::string screenshotFormatString = screenshotFormatComboBox->currentText().toLower().toStdString();
|
||||||
|
|
Loading…
Reference in a new issue