From 5ec05f6b647c5ea41418be7ed19ad381f97cabd8 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Sat, 14 Feb 2015 15:19:40 +0100 Subject: ACCESS: MM - use PRINTSTR in several places, remove related TODOs --- engines/access/martian/martian_game.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'engines/access/martian') diff --git a/engines/access/martian/martian_game.cpp b/engines/access/martian/martian_game.cpp index 7572d360c3..69ca4d3a5a 100644 --- a/engines/access/martian/martian_game.cpp +++ b/engines/access/martian/martian_game.cpp @@ -114,7 +114,7 @@ void MartianEngine::displayNote(const Common::String &msg) { bool lastLine = false; do { lastLine = _fonts._font1.getLine(lines, _screen->_maxChars * 6, line, width); - _fonts._font1.drawString(_screen, line, _screen->_printOrg); + _bubbleBox->PRINTSTR(line); _screen->_printOrg = Common::Point(_screen->_printStart.x, _screen->_printOrg.y + 6); if (_screen->_printOrg.y == 196) { @@ -313,9 +313,8 @@ void MartianEngine::showDeathText(Common::String msg) { bool lastLine; do { lastLine = _fonts._font2.getLine(msg, _screen->_maxChars * 6, line, width); - warning("TODO: use printString"); // Draw the text - _fonts._font2.drawString(_screen, line, _screen->_printOrg); + _bubbleBox->PRINTSTR(line); _screen->_printOrg.y += 6; _screen->_printOrg.x = _screen->_printStart.x; -- cgit v1.2.3