Remove unused arg field
This commit is contained in:
parent
c9e0a311f1
commit
613f34f89c
|
@ -2596,9 +2596,6 @@ void _interpret(Program* program, int a2)
|
||||||
programFatalError(err);
|
programFatalError(err);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Reset argument counter for error reporting.
|
|
||||||
program->arg = 0;
|
|
||||||
|
|
||||||
handler(program);
|
handler(program);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -171,7 +171,6 @@ typedef struct Program {
|
||||||
bool exited;
|
bool exited;
|
||||||
ProgramStack* stackValues;
|
ProgramStack* stackValues;
|
||||||
ProgramStack* returnStackValues;
|
ProgramStack* returnStackValues;
|
||||||
int arg;
|
|
||||||
} Program;
|
} Program;
|
||||||
|
|
||||||
typedef void OpcodeHandler(Program* program);
|
typedef void OpcodeHandler(Program* program);
|
||||||
|
|
Loading…
Reference in New Issue