summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorHedges <hedges@resync.pl>2018-07-13 05:22:59 +0200
committerbunnei <bunneidev@gmail.com>2018-07-13 05:22:59 +0200
commite066bc75b9443ffe39adc44a113eca8e899c6e80 (patch)
tree78bd4a46cfa69c678ae7518260b0a91cc4227adf /src/common
parentMerge pull request #656 from ogniK5377/audren-mem-init (diff)
downloadyuzu-e066bc75b9443ffe39adc44a113eca8e899c6e80.tar
yuzu-e066bc75b9443ffe39adc44a113eca8e899c6e80.tar.gz
yuzu-e066bc75b9443ffe39adc44a113eca8e899c6e80.tar.bz2
yuzu-e066bc75b9443ffe39adc44a113eca8e899c6e80.tar.lz
yuzu-e066bc75b9443ffe39adc44a113eca8e899c6e80.tar.xz
yuzu-e066bc75b9443ffe39adc44a113eca8e899c6e80.tar.zst
yuzu-e066bc75b9443ffe39adc44a113eca8e899c6e80.zip
Diffstat (limited to 'src/common')
-rw-r--r--src/common/string_util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/string_util.cpp b/src/common/string_util.cpp
index ea9d8f77c..0027888c7 100644
--- a/src/common/string_util.cpp
+++ b/src/common/string_util.cpp
@@ -134,7 +134,7 @@ bool SplitPath(const std::string& full_path, std::string* _pPath, std::string* _
size_t dir_end = full_path.find_last_of("/"
// windows needs the : included for something like just "C:" to be considered a directory
#ifdef _WIN32
- ":"
+ "\\:"
#endif
);
if (std::string::npos == dir_end)