possibly fix OPl3 per-channel audio export

This commit is contained in:
tildearrow 2022-04-18 04:42:51 -05:00
parent a4ff0c3876
commit cc5013f3dc
1 changed files with 1 additions and 1 deletions

View File

@ -397,7 +397,7 @@ void DivEngine::runExportThread() {
if (getChannelType(i)==5) {
i++;
while (true) {
if (++i>=chans) break;
if (i>=chans) break;
if (getChannelType(i)!=5) break;
}
i--;