diff --git a/src/core/hle/service/filesystem/filesystem.cpp b/src/core/hle/service/filesystem/filesystem.cpp index 902256757b..f118cff41f 100644 --- a/src/core/hle/service/filesystem/filesystem.cpp +++ b/src/core/hle/service/filesystem/filesystem.cpp @@ -56,7 +56,7 @@ ResultVal> OpenRomFS(u64 title_id) { ResultVal> OpenSaveData( FileSys::SaveDataSpaceId space, FileSys::SaveDataDescriptor save_struct) { LOG_TRACE(Service_FS, "Opening Save Data for space_id={:01X}, save_struct={}", - static_cast(space), SaveStructDebugInfo(save_struct)); + static_cast(space), save_struct.DebugInfo()); if (save_data_factory == nullptr) { return ResultCode(ErrorModule::FS, FileSys::ErrCodes::SaveDataNotFound);