diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-07-18 23:50:04 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-07-18 23:50:07 -0400 |
| commit | 88ba94e8a21bc83ed5a3ae3b903b25388985dcff (patch) | |
| tree | cc8635bd7ebf9f3971c89647bf53f8074b94f27f /src/core/file_sys/savedata_factory.h | |
| parent | 1371e2fb6acf29c228cd96d917ffb747ead4485e (diff) | |
savedata_factory: Make SaveDataDescriptor's DebugInfo() function a const member function
This function doesn't alter class state.
Diffstat (limited to 'src/core/file_sys/savedata_factory.h')
| -rw-r--r-- | src/core/file_sys/savedata_factory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/savedata_factory.h b/src/core/file_sys/savedata_factory.h index 53c69876f..e3a578c0f 100644 --- a/src/core/file_sys/savedata_factory.h +++ b/src/core/file_sys/savedata_factory.h @@ -37,7 +37,7 @@ struct SaveDataDescriptor { u64_le zero_2; u64_le zero_3; - std::string DebugInfo(); + std::string DebugInfo() const; }; static_assert(sizeof(SaveDataDescriptor) == 0x40, "SaveDataDescriptor has incorrect size."); |
