Update src/ScreenOptionsMasterPrefs.cpp

Co-authored-by: sukibaby <163092272+sukibaby@users.noreply.github.com>
This commit is contained in:
Crash Cringle
2025-02-26 11:07:27 -05:00
committed by teejusb
parent 0b3ed6d4f9
commit 437f72b13d
+2 -2
View File
@@ -712,8 +712,8 @@ static void GlobalOffsetSeconds( int &sel, bool ToSel, const ConfOption *pConfOp
static void MachineSyncBias( int &sel, bool ToSel, const ConfOption *pConfOption )
{
const float mapping[] = { 0.0f, 0.009f };
MoveMap( sel, pConfOption, ToSel, mapping, ARRAYLEN(mapping) );
constexpr std::array<float, 2> mapping = { 0.0f, 0.009f };
MoveMap( sel, pConfOption, ToSel, mapping.data(), mapping.size() );
}
static void EditRecordModeLeadIn(int &sel, bool to_sel, const ConfOption* conf_option)