aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/hdb.h
diff options
context:
space:
mode:
authorNipun Garg2019-05-31 12:48:56 +0530
committerEugene Sandulenko2019-09-03 17:16:41 +0200
commit6ad64d992c5d4d2a56949b49a06733800b84131d (patch)
tree647c7f7e1bee01ae9f1c7de58292373ed6de37c3 /engines/hdb/hdb.h
parent208c6430d6a7312f8c877cada1468be4749868b2 (diff)
downloadscummvm-rg350-6ad64d992c5d4d2a56949b49a06733800b84131d.tar.gz
scummvm-rg350-6ad64d992c5d4d2a56949b49a06733800b84131d.tar.bz2
scummvm-rg350-6ad64d992c5d4d2a56949b49a06733800b84131d.zip
HDB: Fix Code Formatting Conventions
Diffstat (limited to 'engines/hdb/hdb.h')
-rw-r--r--engines/hdb/hdb.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/hdb/hdb.h b/engines/hdb/hdb.h
index 3a24d3bba4..eb94cd73b9 100644
--- a/engines/hdb/hdb.h
+++ b/engines/hdb/hdb.h
@@ -70,6 +70,12 @@ public:
const char *getGameId() const;
Common::Platform getPlatform() const;
+ /*
+ Game System Pointers
+ */
+
+ FileMan* fileMan;
+
// Game related members;
bool init();
@@ -81,17 +87,11 @@ public:
private:
Console *_console;
-
- /*
- Game System Pointers
- */
-
- FileMan* _fileMan;
// Game Variables
- GameState gameState;
- bool voiceless;
+ GameState _gameState;
+ bool _voiceless;
};