hle/filesystem: Amend trace log in OpenSaveData() to compile in debug mode

Previously this wouldn't compile, since no such function named
SaveStructDebugInfo() exists.
This commit is contained in:
Lioncash 2018-07-18 17:41:32 -04:00
parent 3d1e8f750c
commit 079be8032d

View File

@ -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);