GUI: invert some compat flags
they are called "compatibility" flags for a reason it doesn't make too much sense to have some of these flags enabled when creating a new Furnace song.
This commit is contained in:
parent
7fd808fd31
commit
6a3def514a
3 changed files with 31 additions and 19 deletions
|
|
@ -491,6 +491,15 @@ bool FurnaceGUI::CWVSliderInt(const char* label, const ImVec2& size, int* v, int
|
|||
return CWVSliderScalar(label,size,ImGuiDataType_S32,v,&v_min,&v_max,format,flags);
|
||||
}
|
||||
|
||||
bool FurnaceGUI::InvCheckbox(const char* label, bool* value) {
|
||||
bool t=!(*value);
|
||||
if (ImGui::Checkbox(label,&t)) {
|
||||
*value=t;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
const char* FurnaceGUI::getSystemName(DivSystem which) {
|
||||
/*
|
||||
if (settings.chipNames) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue