mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-06 20:00:56 +01:00
fix reference error issue #30
This commit is contained in:
parent
f09eb4c5fa
commit
a809b0bde2
1 changed files with 1 additions and 1 deletions
|
@ -267,7 +267,7 @@ module.exports = function inflate_table(type, lens, lens_index, codes, table, ta
|
||||||
|
|
||||||
/* go to next symbol, update count, len */
|
/* go to next symbol, update count, len */
|
||||||
sym++;
|
sym++;
|
||||||
if (--(count[len]) === 0) {
|
if (--count[len] === 0) {
|
||||||
if (len === max) { break; }
|
if (len === max) { break; }
|
||||||
len = lens[lens_index + work[sym]];
|
len = lens[lens_index + work[sym]];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue