mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 17:32:54 +08:00
Fix IsValueCreated method not cecking whether the async task was completed
Caused potential stutters for components that relied on this check.
This commit is contained in:
parent
6faa0f62b3
commit
15ed3b4aac
@ -144,7 +144,7 @@ namespace osu.Game.Beatmaps
|
||||
get
|
||||
{
|
||||
ensureValid();
|
||||
return lazy.IsValueCreated;
|
||||
return lazy.Value.IsCompleted;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user