aboutsummaryrefslogtreecommitdiff
path: root/engines/illusions/screentext.cpp
diff options
context:
space:
mode:
authorjohndoe1232018-05-18 21:15:33 +1000
committerEugene Sandulenko2018-07-20 06:43:33 +0000
commit94fdd597d985cba1436aea7c6be67982de220199 (patch)
tree22c0dd9e3a012c688f8f054993e6413f7657fff0 /engines/illusions/screentext.cpp
parent54dd3814414d7ef5de09cda197b1065655ee9242 (diff)
downloadscummvm-rg350-94fdd597d985cba1436aea7c6be67982de220199.tar.gz
scummvm-rg350-94fdd597d985cba1436aea7c6be67982de220199.tar.bz2
scummvm-rg350-94fdd597d985cba1436aea7c6be67982de220199.zip
ILLUSIONS: BBDOU: Add menu system class, adjust existing code (actual menus not done yet)
(cherry picked from commit 03b0ca1)
Diffstat (limited to 'engines/illusions/screentext.cpp')
-rw-r--r--engines/illusions/screentext.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/illusions/screentext.cpp b/engines/illusions/screentext.cpp
index a7e97eaa51..fd2ef51bc2 100644
--- a/engines/illusions/screentext.cpp
+++ b/engines/illusions/screentext.cpp
@@ -151,7 +151,11 @@ bool ScreenText::insertText(uint16 *text, uint32 fontId, WidthHeight dimensions,
}
*textPart = 0;
- updateTextInfoPosition(Common::Point(160, 100));
+ if (_vm->getGameId() == kGameIdBBDOU) {
+ updateTextInfoPosition(Common::Point(320, 240));
+ } else {
+ updateTextInfoPosition(Common::Point(160, 100));
+ }
return done;
}