mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-15 11:22:55 +00:00
Fix a bug where Shit judgement would always display with anti-aliasing.
This commit is contained in:
parent
d59594ee45
commit
517984d120
|
@ -575,7 +575,7 @@ class NoteStyle implements IRegistryEntry<NoteStyleData>
|
||||||
var result = _data.assets.judgementBad?.isPixel;
|
var result = _data.assets.judgementBad?.isPixel;
|
||||||
if (result == null && fallback != null) result = fallback.isJudgementSpritePixel(rating);
|
if (result == null && fallback != null) result = fallback.isJudgementSpritePixel(rating);
|
||||||
return result ?? false;
|
return result ?? false;
|
||||||
case "GO":
|
case "shit":
|
||||||
var result = _data.assets.judgementShit?.isPixel;
|
var result = _data.assets.judgementShit?.isPixel;
|
||||||
if (result == null && fallback != null) result = fallback.isJudgementSpritePixel(rating);
|
if (result == null && fallback != null) result = fallback.isJudgementSpritePixel(rating);
|
||||||
return result ?? false;
|
return result ?? false;
|
||||||
|
|
Loading…
Reference in a new issue