summaryrefslogtreecommitdiff
path: root/src/p_maputl.c
diff options
context:
space:
mode:
authorSimon Howard2005-09-08 09:58:00 +0000
committerSimon Howard2005-09-08 09:58:00 +0000
commit7d259962ea7bbce0548974a70ea7f3f5f86620ce (patch)
tree324eb6c18482d3af3aa4f773c71b8979707940f2 /src/p_maputl.c
parentd42281c7a347f1581d188a50d717520ea425a15e (diff)
downloadchocolate-doom-7d259962ea7bbce0548974a70ea7f3f5f86620ce.tar.gz
chocolate-doom-7d259962ea7bbce0548974a70ea7f3f5f86620ce.tar.bz2
chocolate-doom-7d259962ea7bbce0548974a70ea7f3f5f86620ce.zip
MAXINTERCEPTS got converted to INT_MAXERCEPTS accidentally when switching
to the ANSI standard limit constants Subversion-branch: /trunk/chocolate-doom Subversion-revision: 93
Diffstat (limited to 'src/p_maputl.c')
-rw-r--r--src/p_maputl.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/p_maputl.c b/src/p_maputl.c
index 8a7eac1e..81e82e0c 100644
--- a/src/p_maputl.c
+++ b/src/p_maputl.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: p_maputl.c 37 2005-08-04 18:42:15Z fraggle $
+// $Id: p_maputl.c 93 2005-09-08 09:58:00Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -22,6 +22,10 @@
// 02111-1307, USA.
//
// $Log$
+// Revision 1.5 2005/09/08 09:58:00 fraggle
+// MAXINTERCEPTS got converted to INT_MAXERCEPTS accidentally when switching
+// to the ANSI standard limit constants
+//
// Revision 1.4 2005/08/04 18:42:15 fraggle
// Silence compiler warnings
//
@@ -44,7 +48,7 @@
//-----------------------------------------------------------------------------
static const char
-rcsid[] = "$Id: p_maputl.c 37 2005-08-04 18:42:15Z fraggle $";
+rcsid[] = "$Id: p_maputl.c 93 2005-09-08 09:58:00Z fraggle $";
#include <stdlib.h>
@@ -560,7 +564,7 @@ P_BlockThingsIterator
//
// INTERCEPT ROUTINES
//
-intercept_t intercepts[INT_MAXERCEPTS];
+intercept_t intercepts[MAXINTERCEPTS];
intercept_t* intercept_p;
divline_t trace;