diff options
| author | Filippos Karapetis | 2011-12-15 12:24:48 +0200 | 
|---|---|---|
| committer | Filippos Karapetis | 2011-12-15 12:24:48 +0200 | 
| commit | 1f348745b00bb2f3fc3bc37d30221ab2f229b28d (patch) | |
| tree | 18340bd16efe1d3f7f8217137e46bb45d745da53 | |
| parent | 93bf275f4c9ef168ceab23a07a1219d2c78b65ec (diff) | |
| download | scummvm-rg350-1f348745b00bb2f3fc3bc37d30221ab2f229b28d.tar.gz scummvm-rg350-1f348745b00bb2f3fc3bc37d30221ab2f229b28d.tar.bz2 scummvm-rg350-1f348745b00bb2f3fc3bc37d30221ab2f229b28d.zip | |
DREAMWEB: Fix regression in describeOb()
| -rw-r--r-- | engines/dreamweb/stubs.cpp | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp index e721d482db..0c57d0d767 100644 --- a/engines/dreamweb/stubs.cpp +++ b/engines/dreamweb/stubs.cpp @@ -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 | 
