mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-30 13:30:02 +00:00
Fix a few variable names I forgot to update
This commit is contained in:
parent
440aca6d66
commit
1efded00d3
1 changed files with 3 additions and 3 deletions
|
|
@ -109,7 +109,7 @@ function* interpret(start, program, stack = []) {
|
|||
if (value) {
|
||||
break;
|
||||
}
|
||||
i = command.arg - 1;
|
||||
ip = command.arg - 1;
|
||||
break;
|
||||
}
|
||||
// jumpIfNot
|
||||
|
|
@ -119,12 +119,12 @@ function* interpret(start, program, stack = []) {
|
|||
if (!value) {
|
||||
break;
|
||||
}
|
||||
i = command.arg - 1;
|
||||
ip = command.arg - 1;
|
||||
break;
|
||||
}
|
||||
// jump
|
||||
case 18: {
|
||||
i = command.arg - 1;
|
||||
ip = command.arg - 1;
|
||||
break;
|
||||
}
|
||||
// call
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue