mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 18:17:38 +00:00
Prettier
This commit is contained in:
parent
326c37d149
commit
5dab717425
1 changed files with 1 additions and 1 deletions
|
|
@ -147,7 +147,7 @@ async function interpret(start, program, stack = [], { logger = null }) {
|
|||
let offset = command.arg.offset;
|
||||
// handle offsets that are over maxOffset that seem to be the wrong sign
|
||||
if (offset > maxOffset) {
|
||||
offset = (offset - 4294967296);
|
||||
offset = offset - 4294967296;
|
||||
}
|
||||
const nextCommandIndex = offsetToCommand[offset];
|
||||
const value = await interpret(nextCommandIndex, program, stack, {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue