diff options
author | Nipun Garg | 2019-06-28 17:59:55 +0530 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:03 +0200 |
commit | 003f8dc2a435f3ea466c9284ed22dadb166f1dc2 (patch) | |
tree | 92219011b207b361762c546fec31e60718396c20 /engines | |
parent | 763cc24c4c896880899994beb9f5d7f1392ccdce (diff) | |
download | scummvm-rg350-003f8dc2a435f3ea466c9284ed22dadb166f1dc2.tar.gz scummvm-rg350-003f8dc2a435f3ea466c9284ed22dadb166f1dc2.tar.bz2 scummvm-rg350-003f8dc2a435f3ea466c9284ed22dadb166f1dc2.zip |
HDB: Move constants to draw-manager
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hdb/draw-manager.h | 2 | ||||
-rw-r--r-- | engines/hdb/hdb.h | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/engines/hdb/draw-manager.h b/engines/hdb/draw-manager.h index d1f1e81df2..7f16f07928 100644 --- a/engines/hdb/draw-manager.h +++ b/engines/hdb/draw-manager.h @@ -30,6 +30,8 @@ namespace HDB { enum { + kScreenWidth = 640, + kScreenHeight = 480, kTileWidth = 32, kTileHeight = 32, kMaxSkies = 10, diff --git a/engines/hdb/hdb.h b/engines/hdb/hdb.h index 0e2ec3db7c..8948c0c9a4 100644 --- a/engines/hdb/hdb.h +++ b/engines/hdb/hdb.h @@ -110,11 +110,6 @@ enum Flag { kFlagPlummet = 0x8000000 }; -enum { - kScreenWidth = 640, - kScreenHeight = 480 -}; - class HDBGame : public Engine { public: HDBGame(OSystem *syst, const ADGameDescription *gameDesc); |