diff options
| author | Bertrand Augereau | 2011-12-06 12:05:32 +0100 |
|---|---|---|
| committer | Bertrand Augereau | 2011-12-06 12:08:13 +0100 |
| commit | 7d9d53d2badfdf124fa67360599087f1e5fc06e2 (patch) | |
| tree | a58f8c7e72ef6146f066de22baecfa7d9baae3ba | |
| parent | e9b91b86a0859e1911d8a26193548bb3fa511920 (diff) | |
| download | scummvm-rg350-7d9d53d2badfdf124fa67360599087f1e5fc06e2.tar.gz scummvm-rg350-7d9d53d2badfdf124fa67360599087f1e5fc06e2.tar.bz2 scummvm-rg350-7d9d53d2badfdf124fa67360599087f1e5fc06e2.zip | |
DREAMWEB: Fix symbol puzzle
| -rw-r--r-- | engines/dreamweb/stubs.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp index 1a26385888..4b64102f4d 100644 --- a/engines/dreamweb/stubs.cpp +++ b/engines/dreamweb/stubs.cpp @@ -3388,7 +3388,7 @@ void DreamGenContext::setTopLeft() { commandOnly(19); } - if (data.word(kMousebutton) != 0); + if (data.word(kMousebutton) != 0) data.byte(kSymboltopdir) = 0xFF; } @@ -3403,7 +3403,7 @@ void DreamGenContext::setTopRight() { commandOnly(20); } - if (data.word(kMousebutton) != 0); + if (data.word(kMousebutton) != 0) data.byte(kSymboltopdir) = 1; } @@ -3418,7 +3418,7 @@ void DreamGenContext::setBotLeft() { commandOnly(21); } - if (data.word(kMousebutton) != 0); + if (data.word(kMousebutton) != 0) data.byte(kSymbolbotdir) = 0xFF; } @@ -3433,7 +3433,7 @@ void DreamGenContext::setBotRight() { commandOnly(22); } - if (data.word(kMousebutton) != 0); + if (data.word(kMousebutton) != 0) data.byte(kSymbolbotdir) = 1; } |
