1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-30 16:20:25 +08:00

Add back .ToLocalTime() call to DrawableDate

This is required because the class is used in many other places that
don't locally call it.
This commit is contained in:
Dean Herbert
2021-12-16 18:25:28 +09:00
Unverified
parent b3e83a47a4
commit 434aa0367f
+1 -1
View File
@@ -22,7 +22,7 @@ namespace osu.Game.Graphics
if (date == value)
return;
date = value;
date = value.ToLocalTime();
if (LoadState >= LoadState.Ready)
updateTime();