diff options
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/dc/vmsave.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/backends/platform/dc/vmsave.cpp b/backends/platform/dc/vmsave.cpp index b4f8e205b8..df02813b67 100644 --- a/backends/platform/dc/vmsave.cpp +++ b/backends/platform/dc/vmsave.cpp @@ -293,18 +293,18 @@ public: class VMSaveManager : public Common::SaveFileManager { private: - static int nameCompare(const unsigned char *entry, const char *match) { - return !scumm_strnicmp(reinterpret_cast<const char *>(entry), match, 12); - } + static int nameCompare(const unsigned char *entry, const char *match) { + return !scumm_strnicmp(reinterpret_cast<const char *>(entry), match, 12); + } public: virtual void updateSavefilesList(Common::StringArray &lockedFiles) { // TODO: implement this (locks files, preventing them from being listed, saved or loaded) } - VMSaveManager() { - vmsfs_name_compare_function = nameCompare; - } + VMSaveManager() { + vmsfs_name_compare_function = nameCompare; + } virtual Common::InSaveFile *openRawFile(const Common::String &filename) { InVMSave *s = new InVMSave(); |