SN: address more easy noise issues, part 1

This commit is contained in:
tildearrow 2022-11-28 16:46:25 -05:00
parent e296b30172
commit a637806e28
2 changed files with 2 additions and 2 deletions

View File

@ -126,7 +126,7 @@ double DivPlatformSMS::NOTE_SN(int ch, int note) {
return NOTE_PERIODIC(note);
}
if (note>easyThreshold) {
return MAX(0,easyStartingPeriod-easyThreshold);
return MAX(0,easyStartingPeriod-(note-easyThreshold));
}
return NOTE_PERIODIC(note);
}

View File

@ -88,7 +88,7 @@ double DivPlatformT6W28::NOTE_SN(int ch, int note) {
return NOTE_PERIODIC(note);
}
if (note>107) {
return MAX(0,13-107);
return MAX(0,13-(note-107));
}
return NOTE_PERIODIC(note);
}