From 24f0bd79d7da5e15c32071f42fa8beb8c73aa8b4 Mon Sep 17 00:00:00 2001 From: Christof Ruch Date: Thu, 25 Jan 2024 23:24:35 +0100 Subject: [PATCH] [fix] Release notes for 2.2.1 and another Linux fix --- release_notes/2.2.1.md | 2 ++ synths/roland-mks50/MKS50_Patch.cpp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/release_notes/2.2.1.md b/release_notes/2.2.1.md index 81b1d8c0..1159384c 100644 --- a/release_notes/2.2.1.md +++ b/release_notes/2.2.1.md @@ -1,3 +1,5 @@ ## Synths: * Roland MKS-50: Implemented patch renaming and patch name display (#297) +* Korg DW 8000: Fixed sending banks with legacy data (imported in KnobKraft < 2.2.0) + diff --git a/synths/roland-mks50/MKS50_Patch.cpp b/synths/roland-mks50/MKS50_Patch.cpp index 577a3bfa..0fc9c563 100644 --- a/synths/roland-mks50/MKS50_Patch.cpp +++ b/synths/roland-mks50/MKS50_Patch.cpp @@ -33,7 +33,7 @@ namespace midikraft { std::vector result; for (char charToFind : name) { bool found = false; - for (int c = 0; c < MKS50_Patch::kPatchNameChar.size(); c++) { + for (size_t c = 0; c < MKS50_Patch::kPatchNameChar.size(); c++) { if (MKS50_Patch::kPatchNameChar[c] == charToFind) { result.push_back((uint8)c); found = true;