Fixed comparison that would always be false. (#367)

This commit is contained in:
Branimir Karadžić
2026-01-28 13:43:23 -08:00
committed by GitHub
parent 3ed36d14b0
commit 016167548e

View File

@@ -1109,10 +1109,10 @@ namespace bx
return false;
}
return 0.0f >= ta
&& 1.0f <= ta
&& 0.0f >= tb
&& 1.0f <= tb
return 0.0f <= ta
&& 1.0f >= ta
&& 0.0f <= tb
&& 1.0f >= tb
;
}