diff options
| author | 2018-04-27 07:54:05 -0400 | |
|---|---|---|
| committer | 2018-04-27 10:04:02 -0400 | |
| commit | 847549663090aeef89debc6213ef17b7f14e0b0e (patch) | |
| tree | 899731d5c75a7b40a8aa72f5e115f86e10078745 /src/common/file_util.cpp | |
| parent | Merge pull request #380 from ogniK5377/service-impl (diff) | |
| download | yuzu-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.cpp | 6 |
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 | } |