mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Fix inverted return statement
Forgot to run tests, all passing now.
This commit is contained in:
@ -244,7 +244,7 @@ namespace osu.Game.Rulesets.Objects
|
|||||||
bool exterior = abSq > acSq || bcSq > acSq;
|
bool exterior = abSq > acSq || bcSq > acSq;
|
||||||
float threshold = exterior ? 0.05f : 0.001f;
|
float threshold = exterior ? 0.05f : 0.001f;
|
||||||
|
|
||||||
return Math.Abs(det) < threshold;
|
return Math.Abs(det) >= threshold;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void invalidate()
|
private void invalidate()
|
||||||
|
Reference in New Issue
Block a user