diff options
| author | 2018-07-18 17:41:32 -0400 | |
|---|---|---|
| committer | 2018-07-18 17:42:44 -0400 | |
| commit | 079be8032d2f00f833b16f915ba226eb5fe56382 (patch) | |
| tree | f2fe33a10bfd60de2af624a02212f091cf5a01da | |
| parent | Merge pull request #681 from lioncash/const (diff) | |
| download | yuzu-079be8032d2f00f833b16f915ba226eb5fe56382.tar.gz yuzu-079be8032d2f00f833b16f915ba226eb5fe56382.tar.xz yuzu-079be8032d2f00f833b16f915ba226eb5fe56382.zip | |
hle/filesystem: Amend trace log in OpenSaveData() to compile in debug mode
Previously this wouldn't compile, since no such function named
SaveStructDebugInfo() exists.
Diffstat (limited to '')
| -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) { | |||
| 56 | ResultVal<std::unique_ptr<FileSys::FileSystemBackend>> OpenSaveData( | 56 | ResultVal<std::unique_ptr<FileSys::FileSystemBackend>> OpenSaveData( |
| 57 | FileSys::SaveDataSpaceId space, FileSys::SaveDataDescriptor save_struct) { | 57 | FileSys::SaveDataSpaceId space, FileSys::SaveDataDescriptor save_struct) { |
| 58 | LOG_TRACE(Service_FS, "Opening Save Data for space_id={:01X}, save_struct={}", | 58 | LOG_TRACE(Service_FS, "Opening Save Data for space_id={:01X}, save_struct={}", |
| 59 | static_cast<u8>(space), SaveStructDebugInfo(save_struct)); | 59 | static_cast<u8>(space), save_struct.DebugInfo()); |
| 60 | 60 | ||
| 61 | if (save_data_factory == nullptr) { | 61 | if (save_data_factory == nullptr) { |
| 62 | return ResultCode(ErrorModule::FS, FileSys::ErrCodes::SaveDataNotFound); | 62 | return ResultCode(ErrorModule::FS, FileSys::ErrCodes::SaveDataNotFound); |