mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-20 15:13:45 +00:00
test
working test without scanstring changes
This commit is contained in:
parent
d8411b4a58
commit
0d4c335231
4 changed files with 12 additions and 12 deletions
|
|
@ -1163,6 +1163,14 @@ Con::EvalResult CodeBlock::exec(U32 ip, const char* functionName, Namespace* thi
|
|||
}
|
||||
ip = code[ip];
|
||||
break;
|
||||
case OP_JMPSTRING:
|
||||
if (stack[_STK--].getBool())
|
||||
{
|
||||
ip++;
|
||||
break;
|
||||
}
|
||||
ip = code[ip];
|
||||
break;
|
||||
case OP_JMPIFNOT_NP:
|
||||
if (stack[_STK].getInt())
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue