mirror of
https://git.coom.tech/drummyfish/raycastlib.git
synced 2024-11-21 20:29:59 +01:00
Simplify loops
This commit is contained in:
parent
99a29e9d57
commit
d9c571e13f
1 changed files with 2 additions and 3 deletions
|
@ -904,7 +904,7 @@ void _columnFunction(HitResult *hits, uint16_t hitCount, uint16_t x, Ray ray)
|
|||
{
|
||||
iTo = y2 < zTop ? zTop : y2;
|
||||
|
||||
for (int_maybe32_t i = z1Screen < y ? z1Screen : y; i >= iTo; --i)
|
||||
for (int_maybe32_t i = y; i >= iTo; --i)
|
||||
{
|
||||
p.position.y = i;
|
||||
p.hit = hit;
|
||||
|
@ -925,8 +925,7 @@ void _columnFunction(HitResult *hits, uint16_t hitCount, uint16_t x, Ray ray)
|
|||
{
|
||||
iTo = y > zBottomCeil ? zBottomCeil : y;
|
||||
|
||||
for (int_maybe32_t i = z1ScreenCeil > y2 ? z1ScreenCeil : y2; i < iTo;
|
||||
++i)
|
||||
for (int_maybe32_t i = y2; i < iTo; ++i)
|
||||
{
|
||||
p.position.y = i;
|
||||
p.hit = hit;
|
||||
|
|
Loading…
Reference in a new issue