diff options
author | Marcus Comstedt | 2016-09-28 16:10:16 +0200 |
---|---|---|
committer | Marcus Comstedt | 2016-09-28 16:11:08 +0200 |
commit | efebb327d91c76c033e46be45fd4e6592449f7fb (patch) | |
tree | fc96a81375361e7c2bebff2a70f602068dd8784f | |
parent | 90e960d3fb51d369b1bdd1812233932ba0ecbefb (diff) | |
download | scummvm-rg350-efebb327d91c76c033e46be45fd4e6592449f7fb.tar.gz scummvm-rg350-efebb327d91c76c033e46be45fd4e6592449f7fb.tar.bz2 scummvm-rg350-efebb327d91c76c033e46be45fd4e6592449f7fb.zip |
DC: Fix indentation
-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(); |