FIx DSP region calculation

This commit is contained in:
wheremyfoodat 2024-07-29 19:54:46 +03:00
parent 908222f26f
commit c7db6fe5dc
2 changed files with 7 additions and 1 deletions
include/audio

View file

@ -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;
}
}