Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
melonDS
Commits
a32d997e
Commit
a32d997e
authored
Aug 19, 2020
by
Arisotura
Browse files
SPU: don't process channels with len<4
parent
6f4e7c60
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/SPU.cpp
View file @
a32d997e
...
...
@@ -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
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment