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

@ -1215,12 +1215,6 @@ void CodeBlock::dumpInstructions(U32 startIp, bool upToReturn)
break;
}
case OP_FLT_TO_NONE:
{
Con::printf("%i: OP_FLT_TO_NONE", ip - 1);
break;
}
case OP_UINT_TO_FLT:
{
Con::printf("%i: OP_UINT_TO_FLT", ip - 1);
@ -1233,9 +1227,9 @@ void CodeBlock::dumpInstructions(U32 startIp, bool upToReturn)
break;
}
case OP_UINT_TO_NONE:
case OP_NUM_TO_NONE:
{
Con::printf("%i: OP_UINT_TO_NONE", ip - 1);
Con::printf("%i: OP_NUM_TO_NONE", ip - 1);
break;
}