From a984d18a14a134b5dbbb20e9eca15f9686b38de7 Mon Sep 17 00:00:00 2001 From: spycrab Date: Wed, 2 May 2018 17:23:41 +0200 Subject: [PATCH] Core/ConfigManager: Rename Track to UpdateTrack --- Source/Core/Core/ConfigManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/ConfigManager.cpp b/Source/Core/Core/ConfigManager.cpp index 387c9a8e17..22cb976620 100644 --- a/Source/Core/Core/ConfigManager.cpp +++ b/Source/Core/Core/ConfigManager.cpp @@ -374,7 +374,7 @@ void SConfig::SaveAutoUpdateSettings(IniFile& ini) { IniFile::Section* section = ini.GetOrCreateSection("AutoUpdate"); - section->Set("Track", m_auto_update_track); + section->Set("UpdateTrack", m_auto_update_track); section->Set("HashOverride", m_auto_update_hash_override); } @@ -682,7 +682,7 @@ void SConfig::LoadAutoUpdateSettings(IniFile& ini) { IniFile::Section* section = ini.GetOrCreateSection("AutoUpdate"); - section->Get("Track", &m_auto_update_track, SCM_UPDATE_TRACK_STR); + section->Get("UpdateTrack", &m_auto_update_track, SCM_UPDATE_TRACK_STR); section->Get("HashOverride", &m_auto_update_hash_override, ""); }