Skip to content

Commit

Permalink
A few post 1.3.3 fixes and tweaks (surge-synthesizer#7747)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
baconpaul authored Aug 9, 2024
1 parent 3d4f07d commit c2db66c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if(NOT BUILD_TESTING)
option(BUILD_TESTING "" OFF)
endif()

project(Surge VERSION 1.3.2 LANGUAGES C CXX ASM)
project(Surge VERSION 1.4.0 LANGUAGES C CXX ASM)

# Banner {{{
message(STATUS "It's Surge XT, folks! Version is ${PROJECT_VERSION}")
Expand Down
2 changes: 1 addition & 1 deletion libs/JUCE
2 changes: 1 addition & 1 deletion src/common/SurgeSynthesizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1500,7 +1500,7 @@ void SurgeSynthesizer::releaseNotePostHoldCheck(int scene, char channel, char ke
else
{ // MPE branch
int highest = -1, lowest = 128, latest = -1;
int hichan, lowchan, latechan;
int hichan{-1}, lowchan{-1}, latechan{-1};
int64_t lt = 0;

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

0 comments on commit c2db66c

Please sign in to comment.