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;
}