diff options
Diffstat (limited to 'engines/titanic/core/mail_man.h')
-rw-r--r-- | engines/titanic/core/mail_man.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/titanic/core/mail_man.h b/engines/titanic/core/mail_man.h index 4c63cdfa13..0a8d5fa90a 100644 --- a/engines/titanic/core/mail_man.h +++ b/engines/titanic/core/mail_man.h @@ -58,22 +58,22 @@ public: /** * Add an object to the mail list */ - void addMail(CGameObject *obj, int id); + void addMail(CGameObject *obj, uint destRoomFlags); /** - * Sets the mail identifier for an object + * Sets the mail destination for an object */ - static void setMailId(CGameObject *obj, int id); + static void setMailDest(CGameObject *obj, uint roomFlags); /** * Scan the mail list for a specified item */ - CGameObject *findMail(int id) const; + CGameObject *findMail(uint roomFlags) const; /** * Remove a mail item */ - void removeMail(int id, int v); + void removeMail(uint destRoomFlags, uint newRoomFlags); void resetValue() { _value = 0; } }; |