mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
Used a constant for the default high value.
This commit is contained in:
parent
8abe9622fd
commit
7863295555
@ -911,7 +911,7 @@ ControlGroupBox::ControlGroupBox(ControllerEmu::ControlGroup* const group, wxWin
|
||||
//options
|
||||
for (auto& groupSetting : group->settings)
|
||||
{
|
||||
if (groupSetting.get()->high == 100)
|
||||
if (groupSetting.get()->high == DEFAULT_HIGH_VALUE)
|
||||
{
|
||||
PadSettingCheckBox* setting_cbox = new PadSettingCheckBox(parent, groupSetting.get());
|
||||
if (groupSetting.get()->is_iterate == true)
|
||||
|
@ -7,6 +7,7 @@
|
||||
#define SLIDER_TICK_COUNT 100
|
||||
#define DETECT_WAIT_TIME 2500
|
||||
#define PREVIEW_UPDATE_TIME 25
|
||||
#define DEFAULT_HIGH_VALUE 100
|
||||
|
||||
// might have to change this setup for wiimote
|
||||
#define PROFILES_PATH "Profiles/"
|
||||
|
Loading…
x
Reference in New Issue
Block a user