Merge pull request #9521 from Wollnashorn/global-only-multiplayer-settings

config: Save multiplayer settings only globally
This commit is contained in:
Narr the Reg 2022-12-29 22:22:48 -06:00 committed by GitHub
commit 73167b12b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -941,7 +941,6 @@ void Config::ReadValues() {
ReadRendererValues(); ReadRendererValues();
ReadAudioValues(); ReadAudioValues();
ReadSystemValues(); ReadSystemValues();
ReadMultiplayerValues();
} }
void Config::SavePlayerValue(std::size_t player_index) { void Config::SavePlayerValue(std::size_t player_index) {
@ -1099,7 +1098,6 @@ void Config::SaveValues() {
SaveRendererValues(); SaveRendererValues();
SaveAudioValues(); SaveAudioValues();
SaveSystemValues(); SaveSystemValues();
SaveMultiplayerValues();
} }
void Config::SaveAudioValues() { void Config::SaveAudioValues() {