GUI: make it clear

continuous vibrato
This commit is contained in:
tildearrow 2023-08-19 15:47:49 -05:00
parent 44781e9cac
commit f352162151
2 changed files with 3 additions and 3 deletions

View file

@ -54,9 +54,9 @@
#define EXTERN_BUSY_BEGIN_SOFT e->softLocked=true; e->isBusy.lock(); #define EXTERN_BUSY_BEGIN_SOFT e->softLocked=true; e->isBusy.lock();
#define EXTERN_BUSY_END e->isBusy.unlock(); e->softLocked=false; #define EXTERN_BUSY_END e->isBusy.unlock(); e->softLocked=false;
//#define DIV_UNSTABLE #define DIV_UNSTABLE
#define DIV_VERSION "0.6pre8" #define DIV_VERSION "dev166"
#define DIV_ENGINE_VERSION 166 #define DIV_ENGINE_VERSION 166
// for imports // for imports
#define DIV_VERSION_MOD 0xff01 #define DIV_VERSION_MOD 0xff01

View file

@ -314,7 +314,7 @@ void FurnaceGUI::drawCompatFlags() {
} }
ImGui::Checkbox("Continuous vibrato",&e->song.continuousVibrato); ImGui::Checkbox("Continuous vibrato",&e->song.continuousVibrato);
if (ImGui::IsItemHovered()) { if (ImGui::IsItemHovered()) {
ImGui::SetTooltip("when enabled, vibrato will not be reset on a new note."); ImGui::SetTooltip("when enabled, vibrato phase/position will not be reset on a new note.");
} }
InvCheckbox("Pitch macro is not linear",&e->song.pitchMacroIsLinear); InvCheckbox("Pitch macro is not linear",&e->song.pitchMacroIsLinear);
if (ImGui::IsItemHovered()) { if (ImGui::IsItemHovered()) {