SegaPCM: really fix it this time

This commit is contained in:
tildearrow 2023-04-13 17:27:27 -05:00
parent eaafc16eb3
commit 5b154c2ddf
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ int DivPlatformSegaPCM::dispatch(DivCommand c) {
case DIV_CMD_NOTE_PORTA: {
int destFreq=(c.value2<<7);
int newFreq;
int mul=(oldSlides || parent->song.linearPitch!=2)?8:parent->song.pitchSlideSpeed;
int mul=(oldSlides || parent->song.linearPitch!=2)?8:1;
bool return2=false;
if (destFreq>chan[c.chan].baseFreq) {
newFreq=chan[c.chan].baseFreq+c.value*mul;