mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-02-18 09:51:50 +00:00
Small bugfix
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@505 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
2f1329a1fe
commit
5372f5ba08
1 changed files with 3 additions and 3 deletions
|
@ -531,7 +531,7 @@ reeval:
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
i -= externs->numglobalbuiltins;
|
i -= externs->numglobalbuiltins;
|
||||||
if (i > current_progstate->numbuiltins)
|
if (i >= current_progstate->numbuiltins)
|
||||||
{
|
{
|
||||||
if (newf->first_statement == -0x7fffffff)
|
if (newf->first_statement == -0x7fffffff)
|
||||||
((builtin_t)newf->profile) (progfuncs, (struct globalvars_s *)current_progstate->globals);
|
((builtin_t)newf->profile) (progfuncs, (struct globalvars_s *)current_progstate->globals);
|
||||||
|
@ -572,8 +572,8 @@ reeval:
|
||||||
static char buffer[1024*1024*8];
|
static char buffer[1024*1024*8];
|
||||||
int size = sizeof buffer;
|
int size = sizeof buffer;
|
||||||
progfuncs->save_ents(progfuncs, buffer, &size, 0);
|
progfuncs->save_ents(progfuncs, buffer, &size, 0);
|
||||||
}*/
|
}
|
||||||
|
*/
|
||||||
s = PR_LeaveFunction (progfuncs);
|
s = PR_LeaveFunction (progfuncs);
|
||||||
st = &pr_statements[s];
|
st = &pr_statements[s];
|
||||||
if (pr_depth == prinst->exitdepth)
|
if (pr_depth == prinst->exitdepth)
|
||||||
|
|
Loading…
Reference in a new issue