Fix color transition from a negative beat
This commit is contained in:
parent
8729515537
commit
841ccc74ed
|
@ -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.
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue