mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
Use Interlocked.Exhange() instead
Increment isn't correct since it returns the post-incremented value. It also always increments.
This commit is contained in:
@ -163,7 +163,7 @@ namespace osu.Game.Overlays.Notifications
|
||||
return;
|
||||
|
||||
// Thread-safe barrier, as this may be called by a web request and also scheduled to the update thread at the same time.
|
||||
if (Interlocked.Increment(ref completionSent) == 0)
|
||||
if (Interlocked.Exchange(ref completionSent, 1) == 0)
|
||||
return;
|
||||
|
||||
CompletionTarget.Invoke(CreateCompletionNotification());
|
||||
|
Reference in New Issue
Block a user