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