Merge branch 'master' of github.com:stella-emu/stella

This commit is contained in:
Stephen Anthony 2019-03-31 20:35:57 -02:30
commit 600deea4a3
3 changed files with 4 additions and 2 deletions

View File

@ -96,7 +96,7 @@ class Ball : public Serializable
}
}
void tick(bool isReceivingMclock = false)
void tick(bool isReceivingMclock = true)
{
if(myUseInvertedPhaseClock && myInvertedPhaseClock)
{

View File

@ -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)
{

View File

@ -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;