aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/hdb.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2019-08-12 18:01:10 +0200
committerEugene Sandulenko2019-09-03 17:17:33 +0200
commitadc41ff141767dae27933ee246c19922491fb4c7 (patch)
tree7f38ce89bf61fe69854935eb6df06590607d3eac /engines/hdb/hdb.cpp
parenteecd232132529b48789a7317f2ebddc46ac6d596 (diff)
downloadscummvm-rg350-adc41ff141767dae27933ee246c19922491fb4c7.tar.gz
scummvm-rg350-adc41ff141767dae27933ee246c19922491fb4c7.tar.bz2
scummvm-rg350-adc41ff141767dae27933ee246c19922491fb4c7.zip
HDB: Fix PPC screen dimensions once more
Diffstat (limited to 'engines/hdb/hdb.cpp')
-rw-r--r--engines/hdb/hdb.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp
index 630766e74c..c310533cbd 100644
--- a/engines/hdb/hdb.cpp
+++ b/engines/hdb/hdb.cpp
@@ -46,10 +46,10 @@ HDBGame* g_hdb;
HDBGame::HDBGame(OSystem *syst, const ADGameDescription *gameDesc) : Engine(syst), _gameDescription(gameDesc) {
g_hdb = this;
if (isPPC()) {
- _screenWidth = 320;
- _screenHeight = 240;
- _screenDrawWidth = 320;
- _screenDrawHeight = 240;
+ _screenWidth = 240;
+ _screenHeight = 320;
+ _screenDrawWidth = 240;
+ _screenDrawHeight = 320;
_progressY = 280;
} else {
_screenWidth = 640;