This is an automated email from the git hooks/post-receive script. smcv pushed a commit to annotated tag 1.42d in repository iortcw.
commit 8f465ce241074e42a50d512bf544a766ab121744 Author: MAN-AT-ARMS <[email protected]> Date: Mon Sep 21 10:54:57 2015 -0400 All: Use correct array size for facets in cm_patch.c --- MP/code/qcommon/cm_patch.c | 2 +- SP/code/qcommon/cm_patch.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MP/code/qcommon/cm_patch.c b/MP/code/qcommon/cm_patch.c index 6cdf0c3..784d5eb 100644 --- a/MP/code/qcommon/cm_patch.c +++ b/MP/code/qcommon/cm_patch.c @@ -452,7 +452,7 @@ static int numPlanes; static patchPlane_t planes[MAX_PATCH_PLANES]; static int numFacets; -static facet_t facets[MAX_PATCH_PLANES]; //maybe MAX_FACETS ?? +static facet_t facets[MAX_FACETS]; #define NORMAL_EPSILON 0.0001 #define DIST_EPSILON 0.02 diff --git a/SP/code/qcommon/cm_patch.c b/SP/code/qcommon/cm_patch.c index 19814c3..45e246d 100644 --- a/SP/code/qcommon/cm_patch.c +++ b/SP/code/qcommon/cm_patch.c @@ -425,7 +425,7 @@ static int numPlanes; static patchPlane_t planes[MAX_PATCH_PLANES]; static int numFacets; -static facet_t facets[MAX_PATCH_PLANES]; //maybe MAX_FACETS ?? +static facet_t facets[MAX_FACETS]; #define NORMAL_EPSILON 0.0001 #define DIST_EPSILON 0.02 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/iortcw.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

