From beec40f178f3eb324d96378a5a9b18ebe407f171 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 24 Feb 2017 22:56:33 -0500 Subject: IniFile: Handle s64/u64 values --- Source/Core/Common/IniFile.cpp | 63 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 61 insertions(+), 2 deletions(-) (limited to 'Source/Core/Common/IniFile.cpp') diff --git a/Source/Core/Common/IniFile.cpp b/Source/Core/Common/IniFile.cpp index e45ae15729..4285af64bc 100644 --- a/Source/Core/Common/IniFile.cpp +++ b/Source/Core/Common/IniFile.cpp @@ -2,9 +2,10 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. -// see IniFile.h +#include "Common/IniFile.h" #include +#include #include #include #include @@ -15,7 +16,6 @@ #include "Common/CommonTypes.h" #include "Common/FileUtil.h" -#include "Common/IniFile.h" #include "Common/StringUtil.h" void IniFile::ParseLine(const std::string& line, std::string* keyOut, std::string* valueOut) @@ -73,6 +73,41 @@ void IniFile::Section::Set(const std::string& key, const std::vector