From b53d396a104e3c070fdb257d31c397178b9a3ce4 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Sun, 14 Nov 2021 21:33:40 -0800 Subject: [PATCH] Highly Complete: NCSF: Fix portamento register to enable portamento --- Frameworks/SSEQPlayer/SSEQPlayer/Track.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Frameworks/SSEQPlayer/SSEQPlayer/Track.cpp b/Frameworks/SSEQPlayer/SSEQPlayer/Track.cpp index 9f5227072..49250fb80 100644 --- a/Frameworks/SSEQPlayer/SSEQPlayer/Track.cpp +++ b/Frameworks/SSEQPlayer/SSEQPlayer/Track.cpp @@ -683,11 +683,13 @@ void Track::Run() case SSEQ_CMD_PORTATIME: this->portaTime = this->overriding.val(pData, read8); + this->state.set(TS_PORTABIT); // Update here? break; case SSEQ_CMD_SWEEPPITCH: this->sweepPitch = this->overriding.val(pData, read16); + this->state.set(TS_PORTABIT); // Update here? break;