summaryrefslogtreecommitdiff
path: root/src/heretic/p_sight.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/heretic/p_sight.c')
-rw-r--r--src/heretic/p_sight.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/heretic/p_sight.c b/src/heretic/p_sight.c
index 257c784b..294736ab 100644
--- a/src/heretic/p_sight.c
+++ b/src/heretic/p_sight.c
@@ -171,7 +171,7 @@ boolean P_SightTraverseIntercepts(void)
while (count--)
{
- dist = MAXINT;
+ dist = INT_MAX;
for (scan = intercepts; scan < intercept_p; scan++)
if (scan->frac < dist)
{
@@ -181,7 +181,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