aboutsummaryrefslogtreecommitdiff
path: root/tools/create_hugo/enums.h
diff options
context:
space:
mode:
authorArnaud Boutonné2010-08-28 00:47:17 +0000
committerArnaud Boutonné2010-08-28 00:47:17 +0000
commit51b88a69b8a2d8d169e6baf980c29be1410098f1 (patch)
treea40e50be5011f365fee6fa10d3013df10f5e262d /tools/create_hugo/enums.h
parentfa04c9dd38ec560427298a705037076a32a9c27a (diff)
downloadscummvm-rg350-51b88a69b8a2d8d169e6baf980c29be1410098f1.tar.gz
scummvm-rg350-51b88a69b8a2d8d169e6baf980c29be1410098f1.tar.bz2
scummvm-rg350-51b88a69b8a2d8d169e6baf980c29be1410098f1.zip
HUGO: Some fixes for the create_hugo tool
svn-id: r52420
Diffstat (limited to 'tools/create_hugo/enums.h')
-rwxr-xr-xtools/create_hugo/enums.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/tools/create_hugo/enums.h b/tools/create_hugo/enums.h
index c67c8d2574..eb03896fbd 100755
--- a/tools/create_hugo/enums.h
+++ b/tools/create_hugo/enums.h
@@ -1298,24 +1298,24 @@ enum path_t {
WANDER2 // Same as WANDER, except keeps cycling when stationary
};
-#define PERSON 4, NULL, {4, NULL, 4, NULL, 2, NULL, 2, NULL}
-#define PERSON2 2, NULL, {4, NULL, 4, NULL}
-#define PERSON3 3, NULL, {4, NULL, 4, NULL, 1, NULL}
-#define PERSON4 4, NULL, {4, NULL, 4, NULL, 1, NULL, 1, NULL}
-#define PERSON5 3, NULL, {4, NULL, 4, NULL, 4, NULL}
-#define ANIMAL 4, NULL, {3, NULL, 3, NULL, 1, NULL, 1, NULL}
-#define THING0 0, NULL, {0, NULL}
-#define THING1 1, NULL, {1, NULL}
-#define THING2 1, NULL, {2, NULL}
-#define THING3 1, NULL, {3, NULL}
-#define THING4 1, NULL, {4, NULL}
-#define THING2a 2, NULL, {1, NULL, 2, NULL}
-#define THING2b 2, NULL, {2, NULL, 2, NULL}
-#define THING2c 2, NULL, {1, NULL, 1, NULL}
-#define THING2d 2, NULL, {1, NULL, 4, NULL}
-#define THING2e 2, NULL, {5, NULL, 1, NULL}
-#define THING2f 2, NULL, {2, NULL, 3, NULL}
-#define THING2g 2, NULL, {3, NULL, 4, NULL}
+#define PERSON 4, NULL, {{4, NULL}, {4, NULL}, {2, NULL}, {2, NULL}}
+#define PERSON2 2, NULL, {{4, NULL}, {4, NULL}}
+#define PERSON3 3, NULL, {{4, NULL}, {4, NULL}, {1, NULL}}
+#define PERSON4 4, NULL, {{4, NULL}, {4, NULL}, {1, NULL}, {1, NULL}}
+#define PERSON5 3, NULL, {{4, NULL}, {4, NULL}, {4, NULL}}
+#define ANIMAL 4, NULL, {{3, NULL}, {3, NULL}, {1, NULL}, {1, NULL}}
+#define THING0 0, NULL, {{0, NULL}}
+#define THING1 1, NULL, {{1, NULL}}
+#define THING2 1, NULL, {{2, NULL}}
+#define THING3 1, NULL, {{3, NULL}}
+#define THING4 1, NULL, {{4, NULL}}
+#define THING2a 2, NULL, {{1, NULL}, {2, NULL}}
+#define THING2b 2, NULL, {{2, NULL}, {2, NULL}}
+#define THING2c 2, NULL, {{1, NULL}, {1, NULL}}
+#define THING2d 2, NULL, {{1, NULL}, {4, NULL}}
+#define THING2e 2, NULL, {{5, NULL}, {1, NULL}}
+#define THING2f 2, NULL, {{2, NULL}, {3, NULL}}
+#define THING2g 2, NULL, {{3, NULL}, {4, NULL}}
#define GO_OBJ -1
enum cycle_t {INVISIBLE, ALMOST_INVISIBLE, NOT_CYCLING, CYCLE_FORWARD, CYCLE_BACKWARD};