diff options
Diffstat (limited to 'engines/wintermute/AdInventory.h')
-rw-r--r-- | engines/wintermute/AdInventory.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/AdInventory.h b/engines/wintermute/AdInventory.h index 159886aa2f..2012054217 100644 --- a/engines/wintermute/AdInventory.h +++ b/engines/wintermute/AdInventory.h @@ -38,9 +38,9 @@ class CAdItem; class CAdInventory : public CBObject {
public:
DECLARE_PERSISTENT(CAdInventory, CBObject)
- HRESULT RemoveItem(char *Name);
+ HRESULT RemoveItem(const char *Name);
HRESULT RemoveItem(CAdItem *Item);
- HRESULT InsertItem(char *Name, char *InsertAfter = NULL);
+ HRESULT InsertItem(const char *Name, const char *InsertAfter = NULL);
CAdInventory(CBGame *inGame);
virtual ~CAdInventory();
CBArray<CAdItem *, CAdItem *> _takenItems;
|