summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-21 21:18:23 +0200
committerLioncash <mathew1800@gmail.com>2018-07-21 21:18:23 +0200
commit41660c8923d15d634ccc98fd08199c9a78496320 (patch)
tree31541aee63226185ee4263bc6a8132e085210d62 /src/common
parentMerge pull request #754 from lioncash/part (diff)
downloadyuzu-41660c8923d15d634ccc98fd08199c9a78496320.tar
yuzu-41660c8923d15d634ccc98fd08199c9a78496320.tar.gz
yuzu-41660c8923d15d634ccc98fd08199c9a78496320.tar.bz2
yuzu-41660c8923d15d634ccc98fd08199c9a78496320.tar.lz
yuzu-41660c8923d15d634ccc98fd08199c9a78496320.tar.xz
yuzu-41660c8923d15d634ccc98fd08199c9a78496320.tar.zst
yuzu-41660c8923d15d634ccc98fd08199c9a78496320.zip
Diffstat (limited to 'src/common')
-rw-r--r--src/common/file_util.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp
index c882ab39f..29dd16541 100644
--- a/src/common/file_util.cpp
+++ b/src/common/file_util.cpp
@@ -837,7 +837,6 @@ std::string GetPathWithoutTop(std::string path) {
const auto name_bck_index = path.find_first_of('\\');
const auto name_fwd_index = path.find_first_of('/');
return path.substr(std::min<size_t>(name_bck_index, name_fwd_index) + 1);
- return path.substr(std::min<size_t>(name_bck_index, name_fwd_index) + 1);
}
std::string GetFilename(std::string path) {