mirror of https://github.com/stella-emu/stella.git
adjusted hotkeys to reordered "TV modes"
This commit is contained in:
parent
6f51b6039d
commit
0666be24e6
|
@ -307,7 +307,7 @@
|
|||
generation of DASM-compatible disassembly files</li>
|
||||
<li>Emulation of CRT TV systems using <a href="http://slack.net/~ant/libs/ntsc.html">
|
||||
Blargg filtering</a>, including presets for several common TV outputs
|
||||
(composite, S-video, RGB, etc.), and ability to fully customize
|
||||
(Composite, S-Video, RGB, etc.), and ability to fully customize
|
||||
many attributes (contrast, brightness, saturation, gamma, etc.).</li>
|
||||
<li>Built-in ROM database with information partially compiled by
|
||||
<a href="http://www.atarimania.com/rom_collection_archive_atari_2600_roms.html">
|
||||
|
@ -1270,17 +1270,17 @@
|
|||
<td>Cmd + 1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Select 'Composite' preset</td>
|
||||
<td>Select 'RGB' preset</td>
|
||||
<td>Alt + 2</td>
|
||||
<td>Cmd + 2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Select 'S-video' preset</td>
|
||||
<td>Select 'S-Video' preset</td>
|
||||
<td>Alt + 3</td>
|
||||
<td>Cmd + 3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Select 'RGB' preset</td>
|
||||
<td>Select 'Composite' preset</td>
|
||||
<td>Alt + 4</td>
|
||||
<td>Cmd + 4</td>
|
||||
</tr>
|
||||
|
|
|
@ -327,16 +327,16 @@ void PhysicalKeyboardHandler::handleEvent(StellaKey key, StellaMod mod, bool sta
|
|||
myOSystem.frameBuffer().tiaSurface().setNTSC(NTSCFilter::PRESET_OFF);
|
||||
break;
|
||||
|
||||
case KBDK_2: // Alt-2 turns on 'composite' NTSC filtering
|
||||
myOSystem.frameBuffer().tiaSurface().setNTSC(NTSCFilter::PRESET_COMPOSITE);
|
||||
case KBDK_2: // Alt-2 turns on 'rgb' NTSC filtering
|
||||
myOSystem.frameBuffer().tiaSurface().setNTSC(NTSCFilter::PRESET_RGB);
|
||||
break;
|
||||
|
||||
case KBDK_3: // Alt-3 turns on 'svideo' NTSC filtering
|
||||
myOSystem.frameBuffer().tiaSurface().setNTSC(NTSCFilter::PRESET_SVIDEO);
|
||||
break;
|
||||
|
||||
case KBDK_4: // Alt-4 turns on 'rgb' NTSC filtering
|
||||
myOSystem.frameBuffer().tiaSurface().setNTSC(NTSCFilter::PRESET_RGB);
|
||||
case KBDK_4: // Alt-4 turns on 'composite' NTSC filtering
|
||||
myOSystem.frameBuffer().tiaSurface().setNTSC(NTSCFilter::PRESET_COMPOSITE);
|
||||
break;
|
||||
|
||||
case KBDK_5: // Alt-5 turns on 'bad' NTSC filtering
|
||||
|
|
Loading…
Reference in New Issue