summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2021-06-09 01:36:06 +0200
committerLioncash <mathew1800@gmail.com>2021-06-09 01:36:09 +0200
commitdd8577e91d853cb04d644b034f85aedd8216c870 (patch)
treec30469727ec0abcad6c849b99c793eeb8f808027
parentMerge pull request #6426 from lat9nq/context-menu-start (diff)
downloadyuzu-dd8577e91d853cb04d644b034f85aedd8216c870.tar
yuzu-dd8577e91d853cb04d644b034f85aedd8216c870.tar.gz
yuzu-dd8577e91d853cb04d644b034f85aedd8216c870.tar.bz2
yuzu-dd8577e91d853cb04d644b034f85aedd8216c870.tar.lz
yuzu-dd8577e91d853cb04d644b034f85aedd8216c870.tar.xz
yuzu-dd8577e91d853cb04d644b034f85aedd8216c870.tar.zst
yuzu-dd8577e91d853cb04d644b034f85aedd8216c870.zip
-rw-r--r--src/common/fs/path_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/fs/path_util.h b/src/common/fs/path_util.h
index 14e8c35d7..f956ac9a2 100644
--- a/src/common/fs/path_util.h
+++ b/src/common/fs/path_util.h
@@ -209,7 +209,7 @@ void SetYuzuPath(YuzuPath yuzu_path, const std::filesystem::path& new_path);
#ifdef _WIN32
template <typename Path>
-[[nodiscard]] void SetYuzuPath(YuzuPath yuzu_path, const Path& new_path) {
+void SetYuzuPath(YuzuPath yuzu_path, const Path& new_path) {
if constexpr (IsChar<typename Path::value_type>) {
SetYuzuPath(yuzu_path, ToU8String(new_path));
} else {