Use nullable doubule to better represent initial playback case

This commit is contained in:
Dean Herbert
2021-01-08 14:05:22 +09:00
parent 8f52a83b29
commit 11801d61c1
2 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ namespace osu.Game.Configuration
{
Set(Static.LoginOverlayDisplayed, false);
Set(Static.MutedAudioNotificationShownOnce, false);
Set(Static.LastHoverSoundPlaybackTime, 0.0);
Set(Static.LastHoverSoundPlaybackTime, (double?)0.0);
Set<APISeasonalBackgrounds>(Static.SeasonalBackgrounds, null);
}
}