aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/character.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/xeen/character.h')
-rw-r--r--engines/xeen/character.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/xeen/character.h b/engines/xeen/character.h
index 480215aa67..649da7ec12 100644
--- a/engines/xeen/character.h
+++ b/engines/xeen/character.h
@@ -106,7 +106,7 @@ public:
/**
* Return the name of the item
*/
- static const Common::String &getItemName(ItemCategory category, uint id);
+ static const char *getItemName(ItemCategory category, uint id);
public:
XeenItem();
@@ -140,7 +140,7 @@ class InventoryItems : public Common::Array<XeenItem> {
protected:
Character *_character;
ItemCategory _category;
- const Common::String *_names;
+ const char **_names;
XeenEngine *getVm();
void equipError(int itemIndex1, ItemCategory category1, int itemIndex2,