You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
error(335, 7): Variable "i" already defined in the scope (at line 332).
gdunzip.gd line 335:
func tinf_build_bits_base(target, delta, first):
var i = 0
var sum = first
for i in range(0, delta):
base_tables[target + '_bits'][i] = 0
for i in range(0, 30 - delta):
base_tables[target + '_bits'][i + delta] = i / delta
for i in range(0, 30):
base_tables[target + '_base'][i] = sum
sum += 1 << base_tables[target + '_bits'][i]```
The text was updated successfully, but these errors were encountered:
error(335, 7): Variable "i" already defined in the scope (at line 332).
gdunzip.gd line 335:
The text was updated successfully, but these errors were encountered: