mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 21:37:42 -07:00
SPU: don't process channels with len<4
This commit is contained in:
parent
6f4e7c60b2
commit
a32d997e1c
@ -420,6 +420,8 @@ void Channel::Run(s32* buf, u32 samples)
|
||||
{
|
||||
if (!(Cnt & (1<<31))) return;
|
||||
|
||||
if ((type < 3) && ((Length+LoopPos) < 16)) return;
|
||||
|
||||
if (KeyOn)
|
||||
{
|
||||
Start();
|
||||
|
Loading…
Reference in New Issue
Block a user