Skip to content

Commit

Permalink
[fix] Release notes for 2.2.1 and another Linux fix
Browse files Browse the repository at this point in the history
  • Loading branch information
christofmuc committed Jan 25, 2024
1 parent 9ec3783 commit 24f0bd7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions release_notes/2.2.1.md
Original file line number Diff line number Diff line change
@@ -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)

2 changes: 1 addition & 1 deletion synths/roland-mks50/MKS50_Patch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ namespace midikraft {
std::vector<uint8> 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;
Expand Down

0 comments on commit 24f0bd7

Please sign in to comment.