mirror of
https://github.com/libretro/stella2023.git
synced 2024-11-27 02:40:37 +00:00
fixed missing SliderWidget initialization command if value is -1
This commit is contained in:
parent
1bb126b06a
commit
22a055075a
@ -373,7 +373,7 @@ class SliderWidget : public ButtonWidget
|
||||
int posToValue(int pos) const;
|
||||
|
||||
protected:
|
||||
int _value{-1}, _stepValue{1};
|
||||
int _value{-INT_MAX}, _stepValue{1};
|
||||
int _valueMin{0}, _valueMax{100};
|
||||
bool _isDragging{false};
|
||||
int _labelWidth{0};
|
||||
|
Loading…
Reference in New Issue
Block a user