diff options
author | Johannes Schickel | 2008-03-18 13:51:16 +0000 |
---|---|---|
committer | Johannes Schickel | 2008-03-18 13:51:16 +0000 |
commit | d4daa244d858491a15a5f0ea7928639ee0a9a546 (patch) | |
tree | eca5da81b04617fba6a21c3baf457a59fce1e916 | |
parent | 4c880c77a49f073036426d0ea8aa53e63ac7e013 (diff) | |
download | scummvm-rg350-d4daa244d858491a15a5f0ea7928639ee0a9a546.tar.gz scummvm-rg350-d4daa244d858491a15a5f0ea7928639ee0a9a546.tar.bz2 scummvm-rg350-d4daa244d858491a15a5f0ea7928639ee0a9a546.zip |
Fixed bug, which caused displaying wrong string to be shown then combining items in HoF.
svn-id: r31180
-rw-r--r-- | engines/kyra/gui_v2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/gui_v2.cpp b/engines/kyra/gui_v2.cpp index 5560b72ee0..75603d623e 100644 --- a/engines/kyra/gui_v2.cpp +++ b/engines/kyra/gui_v2.cpp @@ -687,7 +687,7 @@ bool KyraEngine_v2::checkInventoryItemExchange(uint16 handItem, int slot) { _screen->showMouse(); if (_lang != 1) - updateCommandLineEx(newItem+53, 0x2E, 0xD6); + updateCommandLineEx(newItem+54, 0x2E, 0xD6); return true; } |