Browse code

[NCSF] Enable portamento when setting those registers.

(Thanks to Coda Highland for the fix.)

Naram Qashat authored on 2020/08/07 23:22:39
Showing 1 changed files
... ...
@@ -682,11 +682,13 @@ void Track::Run()
682 682
 
683 683
 				case SSEQ_CMD_PORTATIME:
684 684
 					this->portaTime = this->overriding.val(pData, read8);
685
+					this->state.set(TS_PORTABIT);
685 686
 					// Update here?
686 687
 					break;
687 688
 
688 689
 				case SSEQ_CMD_SWEEPPITCH:
689 690
 					this->sweepPitch = this->overriding.val(pData, read16);
691
+					this->state.set(TS_PORTABIT);
690 692
 					// Update here?
691 693
 					break;
692 694