summaryrefslogtreecommitdiff
path: root/src/hexen/p_sight.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hexen/p_sight.c')
-rw-r--r--src/hexen/p_sight.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hexen/p_sight.c b/src/hexen/p_sight.c
index a2377bde..423c26de 100644
--- a/src/hexen/p_sight.c
+++ b/src/hexen/p_sight.c
@@ -215,7 +215,7 @@ boolean P_SightTraverseIntercepts(void)
while (count--)
{
- dist = MAXINT;
+ dist = INT_MAX;
for (scan = intercepts; scan < intercept_p; scan++)
if (scan->frac < dist)
{
@@ -225,7 +225,7 @@ boolean P_SightTraverseIntercepts(void)
if (!PTR_SightTraverse(in))
return false; // don't bother going farther
- in->frac = MAXINT;
+ in->frac = INT_MAX;
}
return true; // everything was traversed