mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
ps2, minor fixes
This commit is contained in:
parent
f3ae9cb900
commit
a0abaf2ada
2 changed files with 16 additions and 12 deletions
|
@ -114,7 +114,7 @@ static void writeSound(int len)
|
|||
{
|
||||
int ret, l;
|
||||
|
||||
if (samples_made - samples_done < samples_block * (SOUND_BLOCK_COUNT-3)) {
|
||||
if (samples_made - samples_done <= samples_block * (SOUND_BLOCK_COUNT-3)) {
|
||||
samples_made += len / 2;
|
||||
PicoIn.sndOut += len / 2;
|
||||
} else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue