mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
DC: Fix indentation
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user