diff options
| author | Strangerke | 2014-02-28 23:33:19 +0100 |
|---|---|---|
| committer | Strangerke | 2014-02-28 23:33:19 +0100 |
| commit | a8e17552ce9ec9174132ee658fc69f12af53b60d (patch) | |
| tree | c7f7c8b2458ae5bad1e9361a3d867a1e13e83352 /engines/toon | |
| parent | a440c6a20e614c64dcd88380ee5273e9aad77169 (diff) | |
| download | scummvm-rg350-a8e17552ce9ec9174132ee658fc69f12af53b60d.tar.gz scummvm-rg350-a8e17552ce9ec9174132ee658fc69f12af53b60d.tar.bz2 scummvm-rg350-a8e17552ce9ec9174132ee658fc69f12af53b60d.zip | |
TOON: Remove double identical check.
Diffstat (limited to 'engines/toon')
| -rw-r--r-- | engines/toon/toon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/toon/toon.cpp b/engines/toon/toon.cpp index ea87c9be84..3671422a8e 100644 --- a/engines/toon/toon.cpp +++ b/engines/toon/toon.cpp @@ -3615,7 +3615,7 @@ int32 ToonEngine::handleInventoryOnInventory(int32 itemDest, int32 itemSrc) { createMouseItem(21); rearrangeInventory(); return 1; - } else if (itemSrc == 0x6b || itemSrc == 0x6c || itemSrc == 0x6f || itemSrc == 108 || itemSrc == 112) { + } else if (itemSrc == 0x6b || itemSrc == 0x6c || itemSrc == 0x6f || itemSrc == 0x70) { sayLines(2, 1292); return 1; } |
