aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorMarcus Comstedt2016-09-28 16:10:16 +0200
committerMarcus Comstedt2016-09-28 16:11:08 +0200
commitefebb327d91c76c033e46be45fd4e6592449f7fb (patch)
treefc96a81375361e7c2bebff2a70f602068dd8784f /backends
parent90e960d3fb51d369b1bdd1812233932ba0ecbefb (diff)
downloadscummvm-rg350-efebb327d91c76c033e46be45fd4e6592449f7fb.tar.gz
scummvm-rg350-efebb327d91c76c033e46be45fd4e6592449f7fb.tar.bz2
scummvm-rg350-efebb327d91c76c033e46be45fd4e6592449f7fb.zip
DC: Fix indentation
Diffstat (limited to 'backends')
-rw-r--r--backends/platform/dc/vmsave.cpp12
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();