aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/text
diff options
context:
space:
mode:
authorMarisa-Chan2014-07-12 21:41:49 +0000
committerMarisa-Chan2014-07-12 21:41:49 +0000
commitce248644b813d7a722f2c6250f723331fd119e55 (patch)
treed6a99f0b0b614bbe77e0cb082a176bb90df31931 /engines/zvision/text
parentbc4b0b5bf6145be02071410e044c9f27040c856b (diff)
downloadscummvm-rg350-ce248644b813d7a722f2c6250f723331fd119e55.tar.gz
scummvm-rg350-ce248644b813d7a722f2c6250f723331fd119e55.tar.bz2
scummvm-rg350-ce248644b813d7a722f2c6250f723331fd119e55.zip
ZVISION: Fix drawTxt y-position.
Diffstat (limited to 'engines/zvision/text')
-rw-r--r--engines/zvision/text/text.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/text/text.cpp b/engines/zvision/text/text.cpp
index cad2723d13..efb0fb42f9 100644
--- a/engines/zvision/text/text.cpp
+++ b/engines/zvision/text/text.cpp
@@ -318,7 +318,7 @@ int32 textRenderer::drawTxt(const Common::String &txt, cTxtStyle &fnt_stl, Graph
w = font.getStringWidth(txt);
- drawTxtWithJustify(txt, font, clr, dst, fnt_stl.size, fnt_stl.justify);
+ drawTxtWithJustify(txt, font, clr, dst, 0, fnt_stl.justify);
return w;
}