mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-05-05 11:44:49 +12:00
FIx DSP region calculation
This commit is contained in:
parent
908222f26f
commit
c7db6fe5dc
2 changed files with 7 additions and 1 deletions
include/audio
|
@ -142,7 +142,7 @@ namespace Audio {
|
|||
} else if (counter1 == 0xffff && counter0 != 0xfffe) {
|
||||
return 0;
|
||||
} else {
|
||||
return counter0 > counter1 ? 0 : 0;
|
||||
return counter0 > counter1 ? 0 : 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue