mirror of https://github.com/stella-emu/stella.git
Merge branch 'master' of github.com:stella-emu/stella
This commit is contained in:
commit
600deea4a3
|
@ -96,7 +96,7 @@ class Ball : public Serializable
|
|||
}
|
||||
}
|
||||
|
||||
void tick(bool isReceivingMclock = false)
|
||||
void tick(bool isReceivingMclock = true)
|
||||
{
|
||||
if(myUseInvertedPhaseClock && myInvertedPhaseClock)
|
||||
{
|
||||
|
|
|
@ -87,7 +87,7 @@ class Missile : public Serializable
|
|||
}
|
||||
}
|
||||
|
||||
void tick(uInt8 hclock, bool isReceivingMclock = false)
|
||||
void tick(uInt8 hclock, bool isReceivingMclock = true)
|
||||
{
|
||||
if(myUseInvertedPhaseClock && myInvertedPhaseClock)
|
||||
{
|
||||
|
|
|
@ -366,12 +366,14 @@ bool ListWidget::handleEvent(Event::Type e)
|
|||
break;
|
||||
|
||||
case Event::UIPgUp:
|
||||
case Event::UILeft:
|
||||
_selectedItem -= _rows - 1;
|
||||
if (_selectedItem < 0)
|
||||
_selectedItem = 0;
|
||||
break;
|
||||
|
||||
case Event::UIPgDown:
|
||||
case Event::UIRight:
|
||||
_selectedItem += _rows - 1;
|
||||
if (_selectedItem >= size)
|
||||
_selectedItem = size - 1;
|
||||
|
|
Loading…
Reference in New Issue