From 841ccc74edc3bb5203f8d2b04d7a45c5d81b9522 Mon Sep 17 00:00:00 2001 From: ivan tkachenko Date: Wed, 30 Jul 2025 18:33:40 +0300 Subject: [PATCH] Fix color transition from a negative beat --- CHANGELOG.md | 2 +- MuzikaGromche/Plugin.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d81be97..20ac934 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ - Added LobbyCompatibility to dependencies to avoid desync issues. - 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 timings of one of the tracks. diff --git a/MuzikaGromche/Plugin.cs b/MuzikaGromche/Plugin.cs index 1d99514..db2e428 100644 --- a/MuzikaGromche/Plugin.cs +++ b/MuzikaGromche/Plugin.cs @@ -1235,7 +1235,7 @@ namespace MuzikaGromche } else { - return float.IsNaN(track.FadeOutBeat) ? Color.black : Color.white; + return float.IsNaN(track.FadeOutBeat) ? Color.white : Color.black; } } }