mirror of
https://github.com/ppy/osu.git
synced 2025-01-21 06:02:56 +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
|
get
|
||||||
{
|
{
|
||||||
ensureValid();
|
ensureValid();
|
||||||
return lazy.IsValueCreated;
|
return lazy.Value.IsCompleted;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user