mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- Quadruple ACS runaway limit to 2 million instructions.
SVN r3697 (trunk)
This commit is contained in:
parent
c8dede941c
commit
7d3d09e523
1 changed files with 1 additions and 1 deletions
|
@ -4001,7 +4001,7 @@ int DLevelScript::RunScript ()
|
|||
|
||||
while (state == SCRIPT_Running)
|
||||
{
|
||||
if (++runaway > 500000)
|
||||
if (++runaway > 2000000)
|
||||
{
|
||||
Printf ("Runaway %s terminated\n", ScriptPresentation(script).GetChars());
|
||||
state = SCRIPT_PleaseRemove;
|
||||
|
|
Loading…
Reference in a new issue