aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/hdb.h
diff options
context:
space:
mode:
authorNipun Garg2019-03-19 14:30:46 +0530
committerEugene Sandulenko2019-09-03 17:16:41 +0200
commit374958f442e6dc473b778448d9a20e7a75e8c654 (patch)
tree3cd58f1c5674d98d5443a30924d5d02a540c6e46 /engines/hdb/hdb.h
parent74ff415903df1a93eada3843db1f85831b88d151 (diff)
downloadscummvm-rg350-374958f442e6dc473b778448d9a20e7a75e8c654.tar.gz
scummvm-rg350-374958f442e6dc473b778448d9a20e7a75e8c654.tar.bz2
scummvm-rg350-374958f442e6dc473b778448d9a20e7a75e8c654.zip
HDB: Update HDB to the Code Formatting Conventions
Diffstat (limited to 'engines/hdb/hdb.h')
-rw-r--r--engines/hdb/hdb.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/engines/hdb/hdb.h b/engines/hdb/hdb.h
index 4fe1156a23..d03e61a513 100644
--- a/engines/hdb/hdb.h
+++ b/engines/hdb/hdb.h
@@ -57,7 +57,6 @@ public:
Common::Platform getPlatform() const;
private:
-
Console *_console;
Common::File file;
@@ -67,11 +66,11 @@ private:
uint32 dirSize;
bool isValid() {
- return (signature[0] == 'M') &&
- (signature[1] == 'P') &&
- (signature[2] == 'C') &&
- (signature[3] == 'U') &&
- (signature[4] == '\0');
+ return (signature[0] == 'M') &&
+ (signature[1] == 'P') &&
+ (signature[2] == 'C') &&
+ (signature[3] == 'U') &&
+ (signature[4] == '\0');
}
} dataHeader;