pawn-lang / YSI-Includes

Just the YSI include files, none of the extra stuff.
208 stars 106 forks source link

y_functional_funcs.inc(1154) : error 017: undefined symbol "j" #671

Closed NY-FT closed 2 months ago

NY-FT commented 4 months ago
for (new i = 0; j = dataSize - 1; i < j; ++i, --j)

// Fix

for (new i = 0, j = dataSize - 1; i < j; ++i, --j)