Remove superfluous parameter

This commit is contained in:
rwjuk 2017-07-05 22:44:05 +01:00 committed by Michał Janiszewski
parent 28789c3767
commit 72a1ad89a3
1 changed files with 1 additions and 1 deletions

View File

@ -903,7 +903,7 @@ static bool sprite_is_in_quadrant_cycle(uint16 sprite_idx)
bool check_for_sprite_list_cycles(bool fix)
{
for (sint32 i = 0; i < NUM_SPRITE_LISTS; i++) {
if (sprite_is_in_cycle(gSpriteListHead[i], fix)) {
if (sprite_is_in_cycle(gSpriteListHead[i])) {
if (fix)
{
rct_sprite * spr = get_sprite(gSpriteListHead[i]);