mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-05 11:20:58 +01:00
Merge pull request #31 from jarofghosts/master
fix reference error issue #30
This commit is contained in:
commit
18a9999812
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 */
|
||||
sym++;
|
||||
if (--(count[len]) === 0) {
|
||||
if (--count[len] === 0) {
|
||||
if (len === max) { break; }
|
||||
len = lens[lens_index + work[sym]];
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue