diff options
-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)); |