Skip to content

Commit

Permalink
Tiny KBM fixes
Browse files Browse the repository at this point in the history
1. Load .kbm files for kbm loader
2. Temperament, not Temprament

Also add Nathan Kopp to the AUTHORS file

Closes surge-synthesizer#1467
  • Loading branch information
baconpaul committed Jan 10, 2020
1 parent b5f494e commit f7317c9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Alec DiAstra <[email protected]>
Rich Elmes <[email protected]>
The Emu (J Riley Hill)
EvilDragon
Nathan Kopp <[email protected]>
Erik-Jan Maalderink <[email protected]>
Kjetil Matheussen <[email protected]>
Dave Palmer <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/common/SurgeStorage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1446,7 +1446,7 @@ bool SurgeStorage::remapToKeyboard(const Surge::Storage::KeyboardMapping& k)
if( ! currentScale.isValid() )
{
// We need to set the current scale to a default scale
retuneToScale(Surge::Storage::Scale::evenTemprament12NoteScale());
retuneToScale(Surge::Storage::Scale::evenTemperament12NoteScale());
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion src/common/Tunings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Surge::Storage::Scale Surge::Storage::parseSCLData(const std::string &d)
return res;
}

Surge::Storage::Scale Surge::Storage::Scale::evenTemprament12NoteScale()
Surge::Storage::Scale Surge::Storage::Scale::evenTemperament12NoteScale()
{
auto data = R"SCL(! even.scl
!
Expand Down
2 changes: 1 addition & 1 deletion src/common/Tunings.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ struct Scale

std::string toHtml(SurgeStorage *storage);

static Scale evenTemprament12NoteScale();
static Scale evenTemperament12NoteScale();
};

struct KeyboardMapping
Expand Down
2 changes: 1 addition & 1 deletion src/common/gui/SurgeGUIEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3524,7 +3524,7 @@ VSTGUI::COptionMenu *SurgeGUIEditor::makeTuningMenu(VSTGUI::CRect &menuRect)
}
};
Surge::UserInteractions::promptFileOpenDialog(this->synth->storage.userDataPath,
".scl",
".kbm",
cb);
}
);
Expand Down

0 comments on commit f7317c9

Please sign in to comment.