diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-03-12 15:33:41 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-03-14 13:51:23 -0400 |
| commit | a82675b7d581421fa80d5d5c53253cf1d5c1a26d (patch) | |
| tree | 8f1efce1e00c6a7d6044ca3b543d9211a65e8c11 /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | dccc6d8b47b1f6fdab5374003492560c20f766b6 (diff) | |
Kill off some usages of c_str.
Also changes some function params, but this is ok.
Some simplifications were also able to be made (ie. killing off strcmps with ==, etc).
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index c6e37b96fc..23a078e244 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -39,7 +39,7 @@ VideoConfig::VideoConfig() backend_info.bSupports3DVision = false; } -void VideoConfig::Load(const char *ini_file) +void VideoConfig::Load(const std::string& ini_file) { IniFile iniFile; iniFile.Load(ini_file); @@ -217,7 +217,7 @@ void VideoConfig::VerifyValidity() if (!backend_info.bSupportsPixelLighting) bEnablePixelLighting = false; } -void VideoConfig::Save(const char *ini_file) +void VideoConfig::Save(const std::string& ini_file) { IniFile iniFile; iniFile.Load(ini_file); |
