summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/partition_filesystem.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-04-25 17:37:33 +0200
committerLioncash <mathew1800@gmail.com>2018-04-25 18:35:33 +0200
commit5aafc83cc9ce67b2ee052c22934e63793f37c9a7 (patch)
tree6a27b578560a7c8d5c6fcb254087a8c0be439450 /src/core/file_sys/partition_filesystem.cpp
parentMerge pull request #388 from bunnei/refactor-rasterizer-cache (diff)
downloadyuzu-5aafc83cc9ce67b2ee052c22934e63793f37c9a7.tar
yuzu-5aafc83cc9ce67b2ee052c22934e63793f37c9a7.tar.gz
yuzu-5aafc83cc9ce67b2ee052c22934e63793f37c9a7.tar.bz2
yuzu-5aafc83cc9ce67b2ee052c22934e63793f37c9a7.tar.lz
yuzu-5aafc83cc9ce67b2ee052c22934e63793f37c9a7.tar.xz
yuzu-5aafc83cc9ce67b2ee052c22934e63793f37c9a7.tar.zst
yuzu-5aafc83cc9ce67b2ee052c22934e63793f37c9a7.zip
Diffstat (limited to 'src/core/file_sys/partition_filesystem.cpp')
-rw-r--r--src/core/file_sys/partition_filesystem.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/file_sys/partition_filesystem.cpp b/src/core/file_sys/partition_filesystem.cpp
index 4a58a9291..808254ecc 100644
--- a/src/core/file_sys/partition_filesystem.cpp
+++ b/src/core/file_sys/partition_filesystem.cpp
@@ -2,7 +2,6 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
-#include <cinttypes>
#include <utility>
#include "common/file_util.h"
#include "common/logging/log.h"
@@ -40,7 +39,7 @@ Loader::ResultStatus PartitionFilesystem::Load(const std::string& file_path, siz
Loader::ResultStatus result = Load(file_data);
if (result != Loader::ResultStatus::Success)
- LOG_ERROR(Service_FS, "Failed to load PFS from file %s!", file_path.c_str());
+ NGLOG_ERROR(Service_FS, "Failed to load PFS from file {}!", file_path);
return result;
}