From: havoc Date: Sat, 16 Oct 2004 04:50:44 +0000 (+0000) Subject: expanded PR_PrintState from 5 statements to 8 statements printed, to give more chance... X-Git-Tag: xonotic-v0.1.0preview~5479 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=4b719eb5faed8cef47fd503802c5fdc649a76cba;p=xonotic%2Fdarkplaces.git expanded PR_PrintState from 5 statements to 8 statements printed, to give more chance of seeing the parameters to a function in warnings/crashes git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4643 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/pr_exec.c b/pr_exec.c index efae41a4..19d6d8ee 100644 --- a/pr_exec.c +++ b/pr_exec.c @@ -254,7 +254,7 @@ void PR_PrintState(void) int i; if (pr_xfunction) { - for (i = -4;i <= 0;i++) + for (i = -7;i <= 0;i++) if (pr_xstatement + i >= pr_xfunction->first_statement) PR_PrintStatement (pr_statements + pr_xstatement + i); }