diff options
author | Marisa-Chan | 2014-07-12 21:41:49 +0000 |
---|---|---|
committer | Marisa-Chan | 2014-07-12 21:41:49 +0000 |
commit | ce248644b813d7a722f2c6250f723331fd119e55 (patch) | |
tree | d6a99f0b0b614bbe77e0cb082a176bb90df31931 /engines/zvision/text | |
parent | bc4b0b5bf6145be02071410e044c9f27040c856b (diff) | |
download | scummvm-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.cpp | 2 |
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; } |