diff options
author | Paul Gilbert | 2018-03-16 21:16:42 -0400 |
---|---|---|
committer | Paul Gilbert | 2018-03-16 21:16:42 -0400 |
commit | ba6db41a26dc954349c617b2d380fd582d3f65a7 (patch) | |
tree | eefeca3f2bc193155e0859cd83bf4cd5db024be3 | |
parent | 9c4d3be5e9fff480ee44f152c211412b2633ecc8 (diff) | |
download | scummvm-rg350-ba6db41a26dc954349c617b2d380fd582d3f65a7.tar.gz scummvm-rg350-ba6db41a26dc954349c617b2d380fd582d3f65a7.tar.bz2 scummvm-rg350-ba6db41a26dc954349c617b2d380fd582d3f65a7.zip |
XEEN: Fix Can't Equip message having items in reverse
-rw-r--r-- | engines/xeen/item.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/xeen/item.cpp b/engines/xeen/item.cpp index 7a4b459d41..b722d9152d 100644 --- a/engines/xeen/item.cpp +++ b/engines/xeen/item.cpp @@ -215,7 +215,7 @@ void InventoryItems::equipError(int itemIndex1, ItemCategory category1, int item Common::String itemName2 = _character->_items[category2].getName(itemIndex2); MessageDialog::show(vm, Common::String::format(Res.REMOVE_X_TO_EQUIP_Y, - itemName1.c_str(), itemName2.c_str())); + itemName2.c_str(), itemName1.c_str())); } else { MessageDialog::show(vm, Common::String::format(Res.EQUIPPED_ALL_YOU_CAN, (itemIndex1 == -1) ? Res.RING : Res.MEDAL)); |