diff options
author | Eugene Sandulenko | 2019-08-12 18:01:10 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:33 +0200 |
commit | adc41ff141767dae27933ee246c19922491fb4c7 (patch) | |
tree | 7f38ce89bf61fe69854935eb6df06590607d3eac | |
parent | eecd232132529b48789a7317f2ebddc46ac6d596 (diff) | |
download | scummvm-rg350-adc41ff141767dae27933ee246c19922491fb4c7.tar.gz scummvm-rg350-adc41ff141767dae27933ee246c19922491fb4c7.tar.bz2 scummvm-rg350-adc41ff141767dae27933ee246c19922491fb4c7.zip |
HDB: Fix PPC screen dimensions once more
-rw-r--r-- | engines/hdb/hdb.cpp | 8 |
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; |