aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/hdb.cpp
diff options
context:
space:
mode:
authorNipun Garg2019-07-31 11:01:08 +0530
committerEugene Sandulenko2019-09-03 17:17:30 +0200
commita9e65176a15d17ad68c68392614e7a5ed7382e5d (patch)
treef4c2ecb695f644236e838a63ecf4007dcd1278de /engines/hdb/hdb.cpp
parent0fb3ad7ba05983fe64cc5f64294d58fa394935d1 (diff)
downloadscummvm-rg350-a9e65176a15d17ad68c68392614e7a5ed7382e5d.tar.gz
scummvm-rg350-a9e65176a15d17ad68c68392614e7a5ed7382e5d.tar.bz2
scummvm-rg350-a9e65176a15d17ad68c68392614e7a5ed7382e5d.zip
HDB: Add more Platform-specific Constants
Diffstat (limited to 'engines/hdb/hdb.cpp')
-rw-r--r--engines/hdb/hdb.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp
index d243224ffb..6e42ae025f 100644
--- a/engines/hdb/hdb.cpp
+++ b/engines/hdb/hdb.cpp
@@ -49,13 +49,14 @@ HDBGame::HDBGame(OSystem *syst, const ADGameDescription *gameDesc) : Engine(syst
_screenHeight = 320;
_screenDrawWidth = 240;
_screenDrawHeight = 320;
+ _progressY = 280;
} else {
_screenWidth = 640;
_screenHeight = 480;
_screenDrawWidth = _screenWidth - 160;
_screenDrawHeight = 480;
+ _progressY = _screenHeight - 64;
}
- _progressY = _screenHeight - 64;
_format = Graphics::PixelFormat(2, 5, 6, 5, 0, 11, 5, 0, 0);
_systemInit = false;