Fixed array length errors in tankPool and nrdPool. Problems found by phoenixx.
imported>76561198054818918 (Added link to C++ parser on GitHub) |
imported>76561198054818918 (Fixed array length errors in tankPool and nrdPool. Problems found by phoenixx.) |
||
Line 660: | Line 660: | ||
int32 tankCursor | int32 tankCursor | ||
int32 tankRecycleCursor | int32 tankRecycleCursor | ||
TankComponent tankPool[tankCursor] | TankComponent tankPool[tankCursor - 1] | ||
int32 tankRecycle[tankRecycleCursor] | int32 tankRecycle[tankRecycleCursor] | ||
} | } | ||
Line 1,357: | Line 1,357: | ||
int32 nrdCursor | int32 nrdCursor | ||
int32 nrdRecycleCursor | int32 nrdRecycleCursor | ||
DysonNodeRData nrdPool[nrdCursor] | DysonNodeRData nrdPool[nrdCursor - 1] | ||
int32 nrdRecycle[nrdRecycleCursor] | int32 nrdRecycle[nrdRecycleCursor] | ||
} | } |