diff options
author | RichieSams | 2013-09-16 00:05:24 -0500 |
---|---|---|
committer | RichieSams | 2013-09-16 00:05:24 -0500 |
commit | 4c4f08a99e0b7ff914c6f9c2cb1b38caeba9009f (patch) | |
tree | b457abcc6cab5c7f437ce4ac2ac306bf8b6f3991 /engines | |
parent | 1f9f392279b05433e265711758bc5ecec65eb08b (diff) | |
download | scummvm-rg350-4c4f08a99e0b7ff914c6f9c2cb1b38caeba9009f.tar.gz scummvm-rg350-4c4f08a99e0b7ff914c6f9c2cb1b38caeba9009f.tar.bz2 scummvm-rg350-4c4f08a99e0b7ff914c6f9c2cb1b38caeba9009f.zip |
ZVISION: Convert cmdRenderText to use new function syntax
Diffstat (limited to 'engines')
-rw-r--r-- | engines/zvision/console.cpp | 4 |
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 |