diff options
author | Willem Jan Palenstijn | 2011-12-12 23:41:45 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2011-12-12 23:48:49 +0100 |
commit | 6d2723400662c2b7d75bf6317807770b4d370caf (patch) | |
tree | 159af69acff9a1fb21c2ac1b6a9cca705a510a6e /engines | |
parent | d5b69f0c0218bd83f8e246541e2094b807435852 (diff) | |
download | scummvm-rg350-6d2723400662c2b7d75bf6317807770b4d370caf.tar.gz scummvm-rg350-6d2723400662c2b7d75bf6317807770b4d370caf.tar.bz2 scummvm-rg350-6d2723400662c2b7d75bf6317807770b4d370caf.zip |
DREAMWEB: Fix regression in usePipe
Diffstat (limited to 'engines')
-rw-r--r-- | engines/dreamweb/use.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/engines/dreamweb/use.cpp b/engines/dreamweb/use.cpp index 531f465010..f62daf9c9a 100644 --- a/engines/dreamweb/use.cpp +++ b/engines/dreamweb/use.cpp @@ -1332,11 +1332,11 @@ void DreamGenContext::usePipe() { return; } else if (compare(data.byte(kWithobject), data.byte(kWithtype), cupFull)) { // Already full - showPuzText(14, 300); - showPuzText(); + showPuzText(35, 300); putBackObStuff(); } else { - showPuzText(35, 300); + showPuzText(14, 300); + showPuzText(); putBackObStuff(); } } @@ -1385,8 +1385,6 @@ void DreamGenContext::useAxe() { if (data.byte(kMapy) == 10) { // Axe on door - al = 15; - cx = 300; showPuzText(15, 300); data.byte(kProgresspoints)++; data.word(kWatchingtime) = 46*2; |