1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-01-07 12:48:04 +00:00

Revert "Fix FunkinSound not resuming after focus"

This reverts commit d6b3e2a9cf.
This commit is contained in:
EliteMasterEric 2024-02-23 03:19:34 -05:00
parent fb9fd57210
commit 4168962fec

View file

@ -174,7 +174,7 @@ class FunkinSound extends FlxSound implements ICloneable<FunkinSound>
*/ */
override function onFocus():Void override function onFocus():Void
{ {
if (!_alreadyPaused) if (!_alreadyPaused && this._shouldPlay)
{ {
resume(); resume();
} }