mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-17 12:42:34 +01:00
Fixed comparison that would always be false. (#367)
This commit is contained in:
committed by
GitHub
parent
3ed36d14b0
commit
016167548e
@@ -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
|
||||
;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user