[Scummvm-git-logs] scummvm branch-1-9 -> c5896aba4ddf32717a4ed24b65d808b7081ba440

zeldin marcus at mc.pp.se
Wed Sep 28 16:11:56 CEST 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
c5896aba4d DC: Fix indentation


Commit: c5896aba4ddf32717a4ed24b65d808b7081ba440
    https://github.com/scummvm/scummvm/commit/c5896aba4ddf32717a4ed24b65d808b7081ba440
Author: Marcus Comstedt (marcus at mc.pp.se)
Date: 2016-09-28T16:10:16+02:00

Commit Message:
DC: Fix indentation

Changed paths:
    backends/platform/dc/vmsave.cpp



diff --git a/backends/platform/dc/vmsave.cpp b/backends/platform/dc/vmsave.cpp
index b4f8e20..df02813 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();





More information about the Scummvm-git-logs mailing list