aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/zvision/console.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/zvision/console.cpp b/engines/zvision/console.cpp
index 3969aa1f14..0d290a661a 100644
--- a/engines/zvision/console.cpp
+++ b/engines/zvision/console.cpp
@@ -207,7 +207,9 @@ bool Console::cmdRenderText(int argc, const char **argv) {
}
StringManager::TextStyle style = _engine->getStringManager()->getTextStyle(atoi(argv[2]));
- _engine->getRenderManager()->renderTextToWorkingWindow(Common::String(argv[1]), style.font, atoi(argv[3]), atoi(argv[4]), style.color, atoi(argv[5]), -1, Graphics::kTextAlignLeft, atoi(argv[6]) == 0 ? false : true);
+ _engine->getRenderManager()->renderTextToWorkingWindow(333, Common::String(argv[1]), style.font, atoi(argv[3]), atoi(argv[4]), style.color, atoi(argv[5]), -1, Graphics::kTextAlignLeft, atoi(argv[6]) == 0 ? false : true);
+
+ return true;
}
} // End of namespace ZVision