summaryrefslogtreecommitdiff
path: root/src/hexen/p_map.c
diff options
context:
space:
mode:
authorSimon Howard2008-09-17 01:05:14 +0000
committerSimon Howard2008-09-17 01:05:14 +0000
commit55bb7e8935369cb392c705969ed626fe9c0c391c (patch)
tree8a7428c5504b089e19625d3657e75f9a8c0f2839 /src/hexen/p_map.c
parent61e77600041ba534d824943320e7ddddb8e4f6ce (diff)
downloadchocolate-doom-55bb7e8935369cb392c705969ed626fe9c0c391c.tar.gz
chocolate-doom-55bb7e8935369cb392c705969ed626fe9c0c391c.tar.bz2
chocolate-doom-55bb7e8935369cb392c705969ed626fe9c0c391c.zip
Convert MAXINT/MININT -> INT_MAX/INT_MIN in Heretic/Hexen code.
Subversion-branch: /branches/raven-branch Subversion-revision: 1234
Diffstat (limited to 'src/hexen/p_map.c')
-rw-r--r--src/hexen/p_map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hexen/p_map.c b/src/hexen/p_map.c
index 5078b340..27c8386f 100644
--- a/src/hexen/p_map.c
+++ b/src/hexen/p_map.c
@@ -505,7 +505,7 @@ boolean PIT_CheckThing(mobj_t * thing)
{
if (thing->flags & MF_SHOOTABLE && thing != tmthing->target)
{
- if (thing->info->mass != MAXINT)
+ if (thing->info->mass != INT_MAX)
{
thing->momx += tmthing->momx >> 4;
thing->momy += tmthing->momy >> 4;