Skip to content

Commit c2db66c

Browse files
authored
A few post 1.3.3 fixes and tweaks (surge-synthesizer#7747)
* A few post 1.3.3 fixes and tweaks 1. Initialize some variables in SurgeSynthesizer. Closes surge-synthesizer#7746 2. Update JUCE to include expanded lua tokenizer 3. Bump CMakeLists.txt version to 1.4.0 * format
1 parent 3d4f07d commit c2db66c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if(NOT BUILD_TESTING)
1414
option(BUILD_TESTING "" OFF)
1515
endif()
1616

17-
project(Surge VERSION 1.3.2 LANGUAGES C CXX ASM)
17+
project(Surge VERSION 1.4.0 LANGUAGES C CXX ASM)
1818

1919
# Banner {{{
2020
message(STATUS "It's Surge XT, folks! Version is ${PROJECT_VERSION}")

src/common/SurgeSynthesizer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1500,7 +1500,7 @@ void SurgeSynthesizer::releaseNotePostHoldCheck(int scene, char channel, char ke
15001500
else
15011501
{ // MPE branch
15021502
int highest = -1, lowest = 128, latest = -1;
1503-
int hichan, lowchan, latechan;
1503+
int hichan{-1}, lowchan{-1}, latechan{-1};
15041504
int64_t lt = 0;
15051505

15061506
for (k = hikey; k >= lowkey && !do_switch; k--)

0 commit comments

Comments
 (0)