DC: Fix indentation

This commit is contained in:
Marcus Comstedt
2016-09-28 16:11:08 +02:00
parent 90e960d3fb
commit efebb327d9
+6 -6
View File
@@ -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();