fixes and some minor bc adjustment.

This commit is contained in:
Jeff Hutchinson 2021-04-16 23:21:39 -04:00
parent bc0f5bd3a3
commit bfc0109485
7 changed files with 11 additions and 22 deletions

View file

@ -1547,10 +1547,6 @@ ConsoleValue CodeBlock::exec(U32 ip, const char* functionName, Namespace* thisNa
_STK--;
break;
case OP_FLT_TO_NONE:
_STK--;
break;
case OP_UINT_TO_FLT:
numStack[_STK].f = (F64)numStack[_STK].i;
break;
@ -1560,7 +1556,7 @@ ConsoleValue CodeBlock::exec(U32 ip, const char* functionName, Namespace* thisNa
_STK--;
break;
case OP_UINT_TO_NONE:
case OP_NUM_TO_NONE:
_STK--;
break;