mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-28 01:49:42 -06:00
SPU: don't process channels with len<4
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user