mirror of https://github.com/stella-emu/stella.git
Merge branch 'master' into feature/filesystem
This commit is contained in:
commit
cca62ea4fd
|
@ -699,6 +699,18 @@
|
||||||
<td>F4</td>
|
<td>F4</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>Toggle Black/White TV</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>Toggle 7800 pause ¹</td>
|
||||||
|
<td>Alt + F3</td>
|
||||||
|
<td>Cmd + F3</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>Left Player Difficulty A</td>
|
<td>Left Player Difficulty A</td>
|
||||||
<td>F5</td>
|
<td>F5</td>
|
||||||
|
@ -777,6 +789,11 @@
|
||||||
<td>Shift-Cmd + P</td>
|
<td>Shift-Cmd + P</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td colspan="3"><center><font size="-1">
|
||||||
|
¹ only if "Console" is set to "Atari 7800" in <b><a href="#Debugger">Developer Settings</a></b>.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
</br>
|
</br>
|
||||||
|
|
|
@ -1659,12 +1659,10 @@ void EventHandler::handleEvent(Event::Type event, Int32 value, bool repeated)
|
||||||
myOSystem.console().switches().update();
|
myOSystem.console().switches().update();
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
||||||
case Event::Console7800Pause:
|
case Event::Console7800Pause:
|
||||||
if(pressed && !repeated)
|
if(pressed && !repeated)
|
||||||
{
|
{
|
||||||
myEvent.set(Event::ConsoleBlackWhite, 0);
|
myEvent.set(Event::Console7800Pause, myOSystem.console().switches().tvColor() ? 1 : 0);
|
||||||
myEvent.set(Event::ConsoleColor, 0);
|
|
||||||
if (myIs7800)
|
if (myIs7800)
|
||||||
myOSystem.frameBuffer().showTextMessage("Pause pressed");
|
myOSystem.frameBuffer().showTextMessage("Pause pressed");
|
||||||
myOSystem.console().switches().update();
|
myOSystem.console().switches().update();
|
||||||
|
|
Loading…
Reference in New Issue