aboutsummaryrefslogtreecommitdiff
path: root/scumm/string.cpp
diff options
context:
space:
mode:
authorMax Horn2005-04-28 22:34:56 +0000
committerMax Horn2005-04-28 22:34:56 +0000
commitd03b09265902a5a8c915fb515e1fef259c9fb618 (patch)
treeaf96136d0693c4a7ebcc90294555c3b52d9bcc7a /scumm/string.cpp
parentc5127d3c05ec1dccb8ead61d38727e3e98dce6d1 (diff)
downloadscummvm-rg350-d03b09265902a5a8c915fb515e1fef259c9fb618.tar.gz
scummvm-rg350-d03b09265902a5a8c915fb515e1fef259c9fb618.tar.bz2
scummvm-rg350-d03b09265902a5a8c915fb515e1fef259c9fb618.zip
Moved blast text/object code to ScummEngine_v6
svn-id: r17856
Diffstat (limited to 'scumm/string.cpp')
-rw-r--r--scumm/string.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp
index e4cc689169..74f56709dd 100644
--- a/scumm/string.cpp
+++ b/scumm/string.cpp
@@ -755,7 +755,7 @@ void ScummEngine::initCharset(int charsetno) {
_charsetColorMap[i] = _charsetData[charsetno][i];
}
-void ScummEngine::enqueueText(const byte *text, int x, int y, byte color, byte charset, bool center) {
+void ScummEngine_v6::enqueueText(const byte *text, int x, int y, byte color, byte charset, bool center) {
BlastText &bt = _blastTextQueue[_blastTextQueuePos++];
assert(_blastTextQueuePos <= ARRAYSIZE(_blastTextQueue));
@@ -767,7 +767,7 @@ void ScummEngine::enqueueText(const byte *text, int x, int y, byte color, byte c
bt.center = center;
}
-void ScummEngine::drawBlastTexts() {
+void ScummEngine_v6::drawBlastTexts() {
byte *buf;
int c;
int i;
@@ -811,7 +811,7 @@ void ScummEngine::drawBlastTexts() {
_charset->_ignoreCharsetMask = false;
}
-void ScummEngine::removeBlastTexts() {
+void ScummEngine_v6::removeBlastTexts() {
int i;
for (i = 0; i < _blastTextQueuePos; i++) {