aboutsummaryrefslogtreecommitdiff
path: root/engines/dreamweb/monitor.cpp
diff options
context:
space:
mode:
authorBertrand Augereau2011-12-04 18:44:58 +0100
committerBertrand Augereau2011-12-04 18:54:08 +0100
commitdfd1ff2db33f16b3a9c8e832aeb1bced4c1ea0d8 (patch)
tree7f7951eec39ce441da1f6e441acfc84e8ad7ce8f /engines/dreamweb/monitor.cpp
parent26889c12432732174bb306285515959c24c4d140 (diff)
downloadscummvm-rg350-dfd1ff2db33f16b3a9c8e832aeb1bced4c1ea0d8.tar.gz
scummvm-rg350-dfd1ff2db33f16b3a9c8e832aeb1bced4c1ea0d8.tar.bz2
scummvm-rg350-dfd1ff2db33f16b3a9c8e832aeb1bced4c1ea0d8.zip
DREAMWEB: kTempCharset and kCurrentSet are managed out of the VM
Diffstat (limited to 'engines/dreamweb/monitor.cpp')
-rw-r--r--engines/dreamweb/monitor.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/dreamweb/monitor.cpp b/engines/dreamweb/monitor.cpp
index 88df606852..ebd160a98f 100644
--- a/engines/dreamweb/monitor.cpp
+++ b/engines/dreamweb/monitor.cpp
@@ -106,7 +106,7 @@ void DreamGenContext::input() {
char *inputLine = (char *)cs.ptr(kInputline, 64);
memset(inputLine, 0, 64);
data.word(kCurpos) = 0;
- printChar(tempCharset(), data.word(kMonadx), data.word(kMonady), '>', 0, NULL, NULL);
+ printChar(engine->tempCharset(), data.word(kMonadx), data.word(kMonady), '>', 0, NULL, NULL);
multiDump(data.word(kMonadx), data.word(kMonady), 6, 8);
data.word(kMonadx) += 6;
data.word(kCurslocx) = data.word(kMonadx);
@@ -140,7 +140,7 @@ void DreamGenContext::input() {
continue;
multiGet(getSegment(data.word(kMapstore)).ptr(data.word(kCurpos) * 256, 0), data.word(kMonadx), data.word(kMonady), 8, 8);
uint8 charWidth;
- printChar(tempCharset(), data.word(kMonadx), data.word(kMonady), currentKey, 0, &charWidth, NULL);
+ printChar(engine->tempCharset(), data.word(kMonadx), data.word(kMonady), currentKey, 0, &charWidth, NULL);
inputLine[data.word(kCurpos) * 2 + 1] = charWidth;
data.word(kMonadx) += charWidth;
++data.word(kCurpos);
@@ -160,7 +160,7 @@ void DreamGenContext::printCurs() {
multiGet(textUnder(), x, y, 6, height);
++data.word(kMaintimer);
if ((data.word(kMaintimer) & 16) == 0)
- showFrame(tempCharset(), x, y, '/' - 32, 0);
+ showFrame(engine->tempCharset(), x, y, '/' - 32, 0);
multiDump(x - 6, y, 12, height);
}
@@ -195,7 +195,7 @@ void DreamGenContext::showCurrentFile() {
while (*currentFile) {
char c = *currentFile++;
c = engine->modifyChar(c);
- printChar(tempCharset(), &x, 37, c, 0, NULL, NULL);
+ printChar(engine->tempCharset(), &x, 37, c, 0, NULL, NULL);
}
}