aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/hdb.h
diff options
context:
space:
mode:
authorNipun Garg2019-03-26 01:32:21 +0530
committerEugene Sandulenko2019-09-03 17:16:41 +0200
commit9899cbc900368d45313db2a60e626ea39a05cc8b (patch)
tree652f27dc36ee6673ee06b0f7b0a74765490ec1ef /engines/hdb/hdb.h
parent374958f442e6dc473b778448d9a20e7a75e8c654 (diff)
downloadscummvm-rg350-9899cbc900368d45313db2a60e626ea39a05cc8b.tar.gz
scummvm-rg350-9899cbc900368d45313db2a60e626ea39a05cc8b.tar.bz2
scummvm-rg350-9899cbc900368d45313db2a60e626ea39a05cc8b.zip
HDB: Update HDB to the Code Formatting Conventions
Diffstat (limited to 'engines/hdb/hdb.h')
-rw-r--r--engines/hdb/hdb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/hdb/hdb.h b/engines/hdb/hdb.h
index d03e61a513..72b13b0d05 100644
--- a/engines/hdb/hdb.h
+++ b/engines/hdb/hdb.h
@@ -58,7 +58,7 @@ public:
private:
Console *_console;
- Common::File file;
+ Common::File _file;
struct {
byte signature[5]; // 4 Bytes + '\0'
@@ -73,7 +73,7 @@ private:
(signature[4] == '\0');
}
- } dataHeader;
+ } _dataHeader;
struct DataFile {
byte fileName[65]; // 65 Bytes + '\0'
@@ -83,11 +83,11 @@ private:
uint32 unknownField2;
};
- Common::Array<DataFile*> gameData;
+ Common::Array<DataFile*> _gameData;
void readMPC(const Common::String &fileName);
};
}// End of namespace HDB
-#endif \ No newline at end of file
+#endif