aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/dreamweb/stubs.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp
index d931789746..0c22ffc2f5 100644
--- a/engines/dreamweb/stubs.cpp
+++ b/engines/dreamweb/stubs.cpp
@@ -4591,6 +4591,7 @@ void DreamGenContext::showDiaryPage() {
const uint8 *string = getSegment(data.word(kTextfile1)).ptr(offset, 0);
uint16 y = kDiaryy + 16;
printDirect(&string, kDiaryx + 48, &y, 240, 240 & 1);
+ y = kDiaryy + 16;
printDirect(&string, kDiaryx + 129, &y, 240, 240 & 1);
y = kDiaryy + 23;
printDirect(&string, kDiaryx + 48, &y, 240, 240 & 1);
@@ -4659,7 +4660,8 @@ void DreamGenContext::lookAtCard() {
findNextColon(&obText);
findNextColon(&obText);
findNextColon(&obText);
- printDirect(obText, 36, 124, 241, 241 & 1);
+ uint16 y = 124;
+ printDirect(&obText, 36, &y, 241, 241 & 1);
push(es);
push(si);
workToScreenM();