mirror of https://github.com/stella-emu/stella.git
fixed time bar issue with no states
This commit is contained in:
parent
de56f9cff5
commit
99e31ac158
|
@ -188,7 +188,10 @@ void TimeLineWidget::drawWidget(bool hilite)
|
|||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
int TimeLineWidget::valueToPos(int value)
|
||||
{
|
||||
return _stepValue[BSPF::clamp(value, _valueMin, _valueMax)];
|
||||
if(_valueMax >= 0)
|
||||
return _stepValue[BSPF::clamp(value, _valueMin, _valueMax)];
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
Loading…
Reference in New Issue