summaryrefslogtreecommitdiff
path: root/src/common/file_util.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-04-27 07:54:05 -0400
committerGravatar Lioncash2018-04-27 10:04:02 -0400
commit847549663090aeef89debc6213ef17b7f14e0b0e (patch)
tree899731d5c75a7b40a8aa72f5e115f86e10078745 /src/common/file_util.cpp
parentMerge pull request #380 from ogniK5377/service-impl (diff)
downloadyuzu-847549663090aeef89debc6213ef17b7f14e0b0e.tar.gz
yuzu-847549663090aeef89debc6213ef17b7f14e0b0e.tar.xz
yuzu-847549663090aeef89debc6213ef17b7f14e0b0e.zip
general: Convert assertion macros over to be fmt-compatible
Diffstat (limited to 'src/common/file_util.cpp')
-rw-r--r--src/common/file_util.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp
index 37f9e996c..cd852bfd8 100644
--- a/src/common/file_util.cpp
+++ b/src/common/file_util.cpp
@@ -653,12 +653,12 @@ static const std::string GetUserDirectory(const std::string& envvar) {
653 else if (envvar == "XDG_CACHE_HOME") 653 else if (envvar == "XDG_CACHE_HOME")
654 subdirectory = DIR_SEP ".cache"; 654 subdirectory = DIR_SEP ".cache";
655 else 655 else
656 ASSERT_MSG(false, "Unknown XDG variable %s.", envvar.c_str()); 656 ASSERT_MSG(false, "Unknown XDG variable {}.", envvar);
657 user_dir = GetHomeDirectory() + subdirectory; 657 user_dir = GetHomeDirectory() + subdirectory;
658 } 658 }
659 659
660 ASSERT_MSG(!user_dir.empty(), "User directory %s musn’t be empty.", envvar.c_str()); 660 ASSERT_MSG(!user_dir.empty(), "User directory {} mustn’t be empty.", envvar);
661 ASSERT_MSG(user_dir[0] == '/', "User directory %s must be absolute.", envvar.c_str()); 661 ASSERT_MSG(user_dir[0] == '/', "User directory {} must be absolute.", envvar);
662 662
663 return user_dir; 663 return user_dir;
664} 664}