Fix script dumper to dump proper int operands
This commit is contained in:
@@ -99,7 +99,7 @@ public class ScriptDumperTest
|
|||||||
for (int i = 0; i < length; ++i)
|
for (int i = 0; i < length; ++i)
|
||||||
{
|
{
|
||||||
int opcode = script.getInstructions()[i];
|
int opcode = script.getInstructions()[i];
|
||||||
int iop = script.getInstructions()[i];
|
int iop = script.getIntOperands()[i];
|
||||||
String sop = script.getStringOperands()[i];
|
String sop = script.getStringOperands()[i];
|
||||||
|
|
||||||
writer.write(String.format("0x%03x", opcode));
|
writer.write(String.format("0x%03x", opcode));
|
||||||
|
|||||||
Reference in New Issue
Block a user