summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-18 23:41:32 +0200
committerLioncash <mathew1800@gmail.com>2018-07-18 23:42:44 +0200
commit079be8032d2f00f833b16f915ba226eb5fe56382 (patch)
treef2fe33a10bfd60de2af624a02212f091cf5a01da /src
parentMerge pull request #681 from lioncash/const (diff)
downloadyuzu-079be8032d2f00f833b16f915ba226eb5fe56382.tar
yuzu-079be8032d2f00f833b16f915ba226eb5fe56382.tar.gz
yuzu-079be8032d2f00f833b16f915ba226eb5fe56382.tar.bz2
yuzu-079be8032d2f00f833b16f915ba226eb5fe56382.tar.lz
yuzu-079be8032d2f00f833b16f915ba226eb5fe56382.tar.xz
yuzu-079be8032d2f00f833b16f915ba226eb5fe56382.tar.zst
yuzu-079be8032d2f00f833b16f915ba226eb5fe56382.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/filesystem/filesystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/filesystem.cpp b/src/core/hle/service/filesystem/filesystem.cpp
index 902256757..f118cff41 100644
--- a/src/core/hle/service/filesystem/filesystem.cpp
+++ b/src/core/hle/service/filesystem/filesystem.cpp
@@ -56,7 +56,7 @@ ResultVal<std::unique_ptr<FileSys::FileSystemBackend>> OpenRomFS(u64 title_id) {
ResultVal<std::unique_ptr<FileSys::FileSystemBackend>> OpenSaveData(
FileSys::SaveDataSpaceId space, FileSys::SaveDataDescriptor save_struct) {
LOG_TRACE(Service_FS, "Opening Save Data for space_id={:01X}, save_struct={}",
- static_cast<u8>(space), SaveStructDebugInfo(save_struct));
+ static_cast<u8>(space), save_struct.DebugInfo());
if (save_data_factory == nullptr) {
return ResultCode(ErrorModule::FS, FileSys::ErrCodes::SaveDataNotFound);