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);
|
||||
}
|
||||
|
||||
// Reset argument counter for error reporting.
|
||||
program->arg = 0;
|
||||
|
||||
handler(program);
|
||||
}
|
||||
|
||||
|
|
|
@ -171,7 +171,6 @@ typedef struct Program {
|
|||
bool exited;
|
||||
ProgramStack* stackValues;
|
||||
ProgramStack* returnStackValues;
|
||||
int arg;
|
||||
} Program;
|
||||
|
||||
typedef void OpcodeHandler(Program* program);
|
||||
|
|
Loading…
Reference in New Issue