aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/npcs/true_talk_npc.h
diff options
context:
space:
mode:
authorPaul Gilbert2017-01-20 22:33:13 -0500
committerPaul Gilbert2017-01-20 22:33:13 -0500
commitab1e729d2ceb9f207be051d720d66f3ca03fc2ea (patch)
treea50a16feb98322d76c0ec101216c819302fba61f /engines/titanic/npcs/true_talk_npc.h
parentbc1ad72d7f6437575fadd3abfb2d6fbc3340dd16 (diff)
downloadscummvm-rg350-ab1e729d2ceb9f207be051d720d66f3ca03fc2ea.tar.gz
scummvm-rg350-ab1e729d2ceb9f207be051d720d66f3ca03fc2ea.tar.bz2
scummvm-rg350-ab1e729d2ceb9f207be051d720d66f3ca03fc2ea.zip
TITANIC: NpcFlag enum is now completely named
Diffstat (limited to 'engines/titanic/npcs/true_talk_npc.h')
-rw-r--r--engines/titanic/npcs/true_talk_npc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/npcs/true_talk_npc.h b/engines/titanic/npcs/true_talk_npc.h
index 6cf677442b..03a463474d 100644
--- a/engines/titanic/npcs/true_talk_npc.h
+++ b/engines/titanic/npcs/true_talk_npc.h
@@ -31,12 +31,12 @@ namespace Titanic {
enum NpcFlag {
NPCFLAG_SPEAKING = 1, NPCFLAG_IDLING = 2, NPCFLAG_START_IDLING = 4,
- NPCFLAG_8 = 8, NPCFLAG_MOVING = 0x10000, NPCFLAG_MOVE_START = 0x20000,
+ NPCFLAG_DOORBOT_IN_HOME = 8, NPCFLAG_MOVING = 0x10000, NPCFLAG_MOVE_START = 0x20000,
NPCFLAG_MOVE_LOOP = 0x40000, NPCFLAG_MOVE_FINISH = 0x80000,
NPCFLAG_MOVE_LEFT = 0x100000, NPCFLAG_MOVE_RIGHT = 0x200000,
NPCFLAG_MOVE_END = 0x400000, NPCFLAG_PECKING = 0x800000,
NPCFLAG_CHICKEN_OUTSIDE_CAGE = 0x1000000, NPCFLAG_TAKE_OFF = 0x2000000,
- NPCFLAG_4000000 = 0x4000000, NPCFLAG_DOORBOT_INTRO = 0x8000000
+ NPCFLAG_SUMMON_BELLBOT = 0x4000000, NPCFLAG_DOORBOT_INTRO = 0x8000000
};
class CViewItem;