mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 19:52:55 +08:00
Use ==
instead of ??
This commit is contained in:
parent
cef99fd020
commit
abf9039109
@ -267,7 +267,7 @@ namespace osu.Game.Overlays
|
||||
|
||||
TrackChangeDirection direction = TrackChangeDirection.None;
|
||||
|
||||
bool audioEquals = newWorking?.BeatmapInfo?.AudioEquals(current?.BeatmapInfo) ?? false;
|
||||
bool audioEquals = newWorking?.BeatmapInfo?.AudioEquals(current?.BeatmapInfo) == true;
|
||||
|
||||
if (current != null)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user