From 09adb571d35c45941246bdce5db895d9d81fd59c Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Tue, 8 Apr 2014 23:01:46 -0400 Subject: MADS: Cleanup of verb/preposition flags handling --- engines/mads/scene_data.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'engines/mads/scene_data.h') diff --git a/engines/mads/scene_data.h b/engines/mads/scene_data.h index 73ca21d092..e37aa43855 100644 --- a/engines/mads/scene_data.h +++ b/engines/mads/scene_data.h @@ -60,11 +60,12 @@ enum { class VerbInit { public: int _id; - int _action1; - int _action2; + VerbType _verbType; + PrepType _prepType; VerbInit() {} - VerbInit(int id, int action1, int action2): _id(id), _action1(action1), _action2(action2) {} + VerbInit(int id, VerbType verbType, PrepType prepType): _id(id), + _verbType(verbType), _prepType(prepType) {} }; class SceneLogic { -- cgit v1.2.3