aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/intro.cpp
diff options
context:
space:
mode:
authorStrangerke2015-12-20 01:21:06 +0100
committerWillem Jan Palenstijn2015-12-23 21:35:30 +0100
commitb9326e3850c96539243763d7b5b67f9d94a4a397 (patch)
treefc35d9041debee95d9071261f55fd8fa44ae2aad /engines/lab/intro.cpp
parenta2097d2a2eb9d7abfcb4f73b1c45c3778f39f3ca (diff)
downloadscummvm-rg350-b9326e3850c96539243763d7b5b67f9d94a4a397.tar.gz
scummvm-rg350-b9326e3850c96539243763d7b5b67f9d94a4a397.tar.bz2
scummvm-rg350-b9326e3850c96539243763d7b5b67f9d94a4a397.zip
LAB: Refactor some DispMan functions to use Common::String
Diffstat (limited to 'engines/lab/intro.cpp')
-rw-r--r--engines/lab/intro.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lab/intro.cpp b/engines/lab/intro.cpp
index be52e2979d..db881611d3 100644
--- a/engines/lab/intro.cpp
+++ b/engines/lab/intro.cpp
@@ -105,7 +105,7 @@ void Intro::doPictText(const char *filename, TextFont *msgFont, bool isScreen) {
charDrawn = _vm->_graphics->flowText(msgFont, (!_vm->_isHiRes) * -1, 5, 7, false, false, true, true, _vm->_utils->vgaRectScale(14, 11, 306, 189), (char *)curText);
_vm->_graphics->fade(true, 0);
} else
- charDrawn = _vm->_graphics->longDrawMessage((char *)curText);
+ charDrawn = _vm->_graphics->longDrawMessage(Common::String((char *)curText));
curText += charDrawn;
doneFl = (*curText == 0);