mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-01-18 18:46:43 +00:00
Bugfix audio.stop not clearing queue
This commit is contained in:
parent
b12eac4bed
commit
1187a262d9
1 changed files with 2 additions and 0 deletions
|
@ -174,7 +174,9 @@ public class Audio : IPlugin
|
||||||
}
|
}
|
||||||
private static int L_Stop(IntPtr state)
|
private static int L_Stop(IntPtr state)
|
||||||
{
|
{
|
||||||
|
queue.Clear();
|
||||||
_game.Audio.Sound.Stop();
|
_game.Audio.Sound.Stop();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue