aboutsummaryrefslogtreecommitdiff
path: root/engines/drascula/talk.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2017-11-03 09:26:00 +0200
committerFilippos Karapetis2017-11-11 17:14:36 +0200
commitd81869af58b3b8216447a2e77fd6302c21e6550e (patch)
tree9ed37b47aca4c52aa8d14add92bdb8bd16c46d58 /engines/drascula/talk.cpp
parent51cd9b488856dea791079ca6681c16c64d9d14d8 (diff)
downloadscummvm-rg350-d81869af58b3b8216447a2e77fd6302c21e6550e.tar.gz
scummvm-rg350-d81869af58b3b8216447a2e77fd6302c21e6550e.tar.bz2
scummvm-rg350-d81869af58b3b8216447a2e77fd6302c21e6550e.zip
DRASCULA: Simplify the drawing code in BJ's room
Diffstat (limited to 'engines/drascula/talk.cpp')
-rw-r--r--engines/drascula/talk.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/drascula/talk.cpp b/engines/drascula/talk.cpp
index 7ac2cc6406..aa79dab148 100644
--- a/engines/drascula/talk.cpp
+++ b/engines/drascula/talk.cpp
@@ -338,14 +338,14 @@ void DrasculaEngine::talk_bj(int index) {
updateRefresh_pre();
- copyBackground(bjX + 2, bjY - 1, bjX + 2, bjY - 1, 27, 40, bgSurface, screenSurface);
+ copyBackground(170 + 2, 90 - 1, 170 + 2, 90 - 1, 27, 40, bgSurface, screenSurface);
- copyRect(x_talk[face], 99, bjX + 2, bjY - 1, 27, 40, drawSurface3, screenSurface);
+ copyRect(x_talk[face], 99, 170 + 2, 90 - 1, 27, 40, drawSurface3, screenSurface);
moveCharacters();
updateRefresh();
if (!_subtitlesDisabled)
- centerText(said, bjX + 7, bjY);
+ centerText(said, 170 + 7, 90);
updateScreen();