aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/npcs/true_talk_npc.h
diff options
context:
space:
mode:
authorPaul Gilbert2017-01-20 19:36:42 -0500
committerPaul Gilbert2017-01-20 19:36:42 -0500
commit960342cb3742ae6904139cb6fe77d0dfb42f85de (patch)
treea0cbfd4c20acce3d7591cc179c9df1a35e1e2cd5 /engines/titanic/npcs/true_talk_npc.h
parente8d45a17dc4fd5d1bd04ef06b0729f5256ec4129 (diff)
downloadscummvm-rg350-960342cb3742ae6904139cb6fe77d0dfb42f85de.tar.gz
scummvm-rg350-960342cb3742ae6904139cb6fe77d0dfb42f85de.tar.bz2
scummvm-rg350-960342cb3742ae6904139cb6fe77d0dfb42f85de.zip
TITANIC: Renaming NPC flags
Diffstat (limited to 'engines/titanic/npcs/true_talk_npc.h')
-rw-r--r--engines/titanic/npcs/true_talk_npc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/titanic/npcs/true_talk_npc.h b/engines/titanic/npcs/true_talk_npc.h
index d9ea037a72..35d6690887 100644
--- a/engines/titanic/npcs/true_talk_npc.h
+++ b/engines/titanic/npcs/true_talk_npc.h
@@ -31,11 +31,11 @@ namespace Titanic {
enum NpcFlag {
NPCFLAG_SPEAKING = 1, NPCFLAG_IDLING = 2, NPCFLAG_START_IDLING = 4,
- NPCFLAG_8 = 8, NPCFLAG_10000 = 0x10000, NPCFLAG_20000 = 0x20000,
+ NPCFLAG_8 = 8, NPCFLAG_MOVING = 0x10000, NPCFLAG_20000 = 0x20000,
NPCFLAG_40000 = 0x40000, NPCFLAG_80000 = 0x80000,
- NPCFLAG_100000 = 0x100000, NPCFLAG_200000 = 0x200000,
- NPCFLAG_400000 = 0x400000, NPCFLAG_800000 = 0x800000,
- NPCFLAG_1000000 = 0x1000000, NPCFLAG_2000000 = 0x2000000,
+ NPCFLAG_MOVE_LEFT = 0x100000, NPCFLAG_MOVE_RIGHT = 0x200000,
+ NPCFLAG_MOVE_END = 0x400000, NPCFLAG_800000 = 0x800000,
+ NPCFLAG_MOVE_LEFT0 = 0x1000000, NPCFLAG_TAKE_OFF = 0x2000000,
NPCFLAG_4000000 = 0x4000000, NPCFLAG_DOORBOT_INTRO = 0x8000000
};