From d222f25f0b3946302cb41ae38e3bbc0efa06e774 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 7 Dec 2001 17:24:16 +0000 Subject: [PATCH] correct some error messages --- qw/source/sv_pr_cmds.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qw/source/sv_pr_cmds.c b/qw/source/sv_pr_cmds.c index e0e19ad57..9f6fcb1e7 100644 --- a/qw/source/sv_pr_cmds.c +++ b/qw/source/sv_pr_cmds.c @@ -1426,7 +1426,7 @@ PF_getboxbounds (progs_t *pr) int h = G_INT (pr, OFS_PARM0) - 1; if (h < 0 || h > MAX_PF_HULLS - 1 || !(ch = pf_hull_list[h])) - PR_RunError (pr, "PF_freeboxhull: invalid box hull handle\n"); + PR_RunError (pr, "PF_getboxbounds: invalid box hull handle\n"); if (G_INT (pr, OFS_PARM1)) { VectorCopy (ch->maxs, G_VECTOR (pr, OFS_RETURN)); @@ -1515,7 +1515,7 @@ PF_rotate_bbox (progs_t *pr) }; if (h < 0 || h > MAX_PF_HULLS - 1 || !(ch = pf_hull_list[h])) - PR_RunError (pr, "PF_freeboxhull: invalid box hull handle\n"); + PR_RunError (pr, "PF_rotate_bbox: invalid box hull handle\n"); // set up the rotation matrix. the three orientation vectors form the // columns of the rotation matrix