Skip to content

Commit

Permalink
DREAMWEB: Fix regression in describeOb()
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegr committed Dec 15, 2011
1 parent 93bf275 commit 1f34874
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions engines/dreamweb/stubs.cpp
Expand Up @@ -3402,11 +3402,12 @@ void DreamGenContext::describeOb() {
if (data.byte(kForeignrelease) && data.byte(kObjecttype) == 1)
y = 82;
data.word(kCharshift) = 91 + 91;
printDirect(obText, 33, y, 241, 241 & 1);
printDirect(&obText, 33, &y, 241, 241 & 1);
data.word(kCharshift) = 0;
y = 104;
if (data.byte(kForeignrelease) && data.byte(kObjecttype) == 1)
y = 94;
printDirect(obText, 36, y, 241, 241 & 1);
printDirect(&obText, 36, &y, 241, 241 & 1);
obsThatDoThings();

// Additional text
Expand Down

0 comments on commit 1f34874

Please sign in to comment.