[Scummvm-git-logs] scummvm master -> efebb327d91c76c033e46be45fd4e6592449f7fb
zeldin
marcus at mc.pp.se
Wed Sep 28 16:11:52 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:
efebb327d9 DC: Fix indentation
Commit: efebb327d91c76c033e46be45fd4e6592449f7fb
https://github.com/scummvm/scummvm/commit/efebb327d91c76c033e46be45fd4e6592449f7fb
Author: Marcus Comstedt (marcus at mc.pp.se)
Date: 2016-09-28T16:11:08+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