From 46a472acf9a44862abbe01a958874d0cfc9d6751 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 19 Aug 2014 10:25:13 -0400 Subject: [PATCH] Ini: Remove dead code --- rpcs3/Ini.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/rpcs3/Ini.cpp b/rpcs3/Ini.cpp index ad54b0dca8..d6dfbc497a 100644 --- a/rpcs3/Ini.cpp +++ b/rpcs3/Ini.cpp @@ -141,29 +141,24 @@ void Ini::Save(const std::string& section, const std::string& key, WindowInfo va int Ini::Load(const std::string& section, const std::string& key, const int def_value) { return m_Config->GetLongValue(section.c_str(), key.c_str(), def_value); - saveIniFile(); } bool Ini::Load(const std::string& section, const std::string& key, const bool def_value) { return StringToBool(m_Config->GetValue(section.c_str(), key.c_str(), BoolToString(def_value).c_str())); - saveIniFile(); } std::pair Ini::Load(const std::string& section, const std::string& key, const std::pair def_value) { return StringToSize(m_Config->GetValue(section.c_str(), key.c_str(), SizeToString(def_value).c_str())); - saveIniFile(); } std::string Ini::Load(const std::string& section, const std::string& key, const std::string& def_value) { return std::string(m_Config->GetValue(section.c_str(), key.c_str(), def_value.c_str())); - saveIniFile(); } WindowInfo Ini::Load(const std::string& section, const std::string& key, const WindowInfo& def_value) { return StringToWindowInfo(m_Config->GetValue(section.c_str(), key.c_str(), WindowInfoToString(def_value).c_str())); - saveIniFile(); }