diff options
| author | nakeee <nakeee@gmail.com> | 2009-03-01 00:12:05 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2009-03-01 00:12:05 +0000 |
| commit | 5b033732b8baf15f07e363d7b6fbeea24a0387df (patch) | |
| tree | b55849184f97e31d0c531092a59312aa142f3696 /Source/Core | |
| parent | 660bdaac19c699540f75e0aa323023940fb829b4 (diff) | |
Small fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2492 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Common/Src/FileUtil.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/Common/Src/FileUtil.cpp b/Source/Core/Common/Src/FileUtil.cpp index 889c715ac2..2a338d0d68 100644 --- a/Source/Core/Common/Src/FileUtil.cpp +++ b/Source/Core/Common/Src/FileUtil.cpp @@ -536,6 +536,7 @@ std::string GetPluginsDirectory() pluginsDir = PLUGINS_DIR; #endif + pluginsDir += DIR_SEP; INFO_LOG(COMMON, "GetPluginsDirectory: Setting to %s:", pluginsDir.c_str()); return pluginsDir; @@ -557,6 +558,7 @@ std::string GetSysDirectory() sysDir = SYSDATA_DIR; #endif + sysDir += DIR_SEP; INFO_LOG(COMMON, "GetSysDirectory: Setting to %s:", sysDir.c_str()); return sysDir; |
