1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-09-20 21:37:26 +02:00

Clean up superfluous no-intersection return logic

It's not necessary to say 'return false' twice.
This commit is contained in:
Misa 2020-08-04 00:56:45 -07:00 committed by Ethan Lee
parent 627e971e90
commit 2d71881321

View file

@ -1420,12 +1420,8 @@ bool Graphics::Hitest(SDL_Surface* surface1, point p1, SDL_Surface* surface2, po
} }
} }
} }
return false;
}
else
{
return false;
} }
return false;
} }