diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/filesystem/filesystem.cpp | 2 |
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); |