Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
Stella
Commits
600deea4
Commit
600deea4
authored
Mar 31, 2019
by
Stephen Anthony
Browse files
Merge branch 'master' of github.com:stella-emu/stella
parents
2aa910c5
93bf9443
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/emucore/tia/Ball.hxx
View file @
600deea4
...
...
@@ -96,7 +96,7 @@ class Ball : public Serializable
}
}
void
tick
(
bool
isReceivingMclock
=
fals
e
)
void
tick
(
bool
isReceivingMclock
=
tru
e
)
{
if
(
myUseInvertedPhaseClock
&&
myInvertedPhaseClock
)
{
...
...
src/emucore/tia/Missile.hxx
View file @
600deea4
...
...
@@ -87,7 +87,7 @@ class Missile : public Serializable
}
}
void
tick
(
uInt8
hclock
,
bool
isReceivingMclock
=
fals
e
)
void
tick
(
uInt8
hclock
,
bool
isReceivingMclock
=
tru
e
)
{
if
(
myUseInvertedPhaseClock
&&
myInvertedPhaseClock
)
{
...
...
src/gui/ListWidget.cxx
View file @
600deea4
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment