summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/p_enemy.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2010-05-29 08:12:39 +0000
committerMichael Sevakis <jethead71@rockbox.org>2010-05-29 08:12:39 +0000
commit9c6e217f29bb0a76ec153574a3d493b020e5fb60 (patch)
treeb38acde6c091b7f8b0e3205645f9d232f19eeabb /apps/plugins/doom/p_enemy.c
parent6980c1e9988a7c959876ad77b760e042272a9ec2 (diff)
downloadrockbox-9c6e217f29bb0a76ec153574a3d493b020e5fb60.tar.gz
rockbox-9c6e217f29bb0a76ec153574a3d493b020e5fb60.zip
Doom plugin: In anticipation of moving to the EABI toolchain, because of its assumptions about enums being sized as ints, convert enum typdefs to int or unsigned depending upon whether they have negative values in the enumeration. This should effectively preserve the manner in which it is compiled under the old toolchain and avoids having to closely inspect and possibly change many places in the code.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26368 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/doom/p_enemy.c')
-rw-r--r--apps/plugins/doom/p_enemy.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/doom/p_enemy.c b/apps/plugins/doom/p_enemy.c
index 5b3f958146..9300315a10 100644
--- a/apps/plugins/doom/p_enemy.c
+++ b/apps/plugins/doom/p_enemy.c
@@ -50,7 +50,7 @@
50 50
51static mobj_t *current_actor; 51static mobj_t *current_actor;
52 52
53typedef enum { 53enum {
54 DI_EAST, 54 DI_EAST,
55 DI_NORTHEAST, 55 DI_NORTHEAST,
56 DI_NORTH, 56 DI_NORTH,
@@ -61,7 +61,8 @@ typedef enum {
61 DI_SOUTHEAST, 61 DI_SOUTHEAST,
62 DI_NODIR, 62 DI_NODIR,
63 NUMDIRS 63 NUMDIRS
64} dirtype_t; 64};
65typedef unsigned dirtype_t;
65 66
66void A_Fall(mobj_t *actor); 67void A_Fall(mobj_t *actor);
67void A_FaceTarget(mobj_t *actor); 68void A_FaceTarget(mobj_t *actor);