Fix color transition from a negative beat

This commit is contained in:
ivan tkachenko 2025-07-30 18:33:40 +03:00
parent 8729515537
commit 841ccc74ed
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
- Added LobbyCompatibility to dependencies to avoid desync issues. - Added LobbyCompatibility to dependencies to avoid desync issues.
- Fixed lyrics not being displayed in some situations. - Fixed lyrics not being displayed in some situations.
- Fixed minor visual issue with the fade out effect. - Fixed visual issues with the fade out effect.
- Fixed visual glitch at the last beat of a loop. - Fixed visual glitch at the last beat of a loop.
- Fixed timings of one of the tracks. - Fixed timings of one of the tracks.

View File

@ -1235,7 +1235,7 @@ namespace MuzikaGromche
} }
else else
{ {
return float.IsNaN(track.FadeOutBeat) ? Color.black : Color.white; return float.IsNaN(track.FadeOutBeat) ? Color.white : Color.black;
} }
} }
} }