mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-25 02:57:30 +00:00
Fix a few variable names I forgot to update
This commit is contained in:
parent
9a50a92466
commit
2cd0897c3c
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