diff --git a/docs/graphics/options_developer_tia.png b/docs/graphics/options_developer_tia.png index 21376b14b..cbeffbf74 100644 Binary files a/docs/graphics/options_developer_tia.png and b/docs/graphics/options_developer_tia.png differ diff --git a/docs/index.html b/docs/index.html index bdcf1211e..909cceac6 100644 --- a/docs/index.html +++ b/docs/index.html @@ -3694,7 +3694,7 @@ When enabled, each external access (AtariVox/SaveKey EEPROM, PlusROM, Supercharger...) is signalled by a message. -
-dev.tia.type <standard|koolaidman|
cosmicark|pesco|quickstep|matchie|
indy500|heman|custom>
+
-dev.tia.type <standard|koolaidman|
cosmicark|pesco|quickstep|matchie|
indy500|heman|flashmenu|custom>
Set emulated TIA type. Only with 'custom' the following TIA options become relevant.
-dev.tia.plinvphase <1|0>
@@ -3705,6 +3705,15 @@
-dev.tia.blinvphase <1|0>
Enable/disable inverted HMOVE clock phase for ball. + +
-dev.tia.pllatehmove <1|0>
+ Enable/disable short late HMOVE for players (Flashcart menu shifted right). + +
-dev.tia.mslatehmove <1|0>
+ Enable/disable short late HMOVE for missiles. + +
-dev.tia.bllatehmove <1|0>
+ Enable/disable short late HMOVE for ball.
-dev.tia.delaypfbits <1|0>
Enable/disable playfield bits delayed by one color clock (stray playfield pixels in Pesco). @@ -4615,6 +4624,9 @@ Inverted HMOVE clock...Emulates the Kool-Aid Man collision and Cosmic Ark stars glitches for the given objects. -dev.tia.plinvphase
-dev.tia.msinvphase
-dev.tia.blinvphase + Short late HMOVEEmulates one pixel too short late HMOVEs for the given objects. + This causes e.g. shifted flashcart menues. + -dev.tia.pllatehmove
-dev.tia.mslatehmove
-dev.tia.bllatehmove Delayed PlayfieldEmulates playfield changes moved by one color clock. This e.g. causes glitches in Pesco (stray playfield pixel), Quick Step! (colored step borders) and Matchie (vertical line at pixel 79). diff --git a/src/gui/DeveloperDialog.cxx b/src/gui/DeveloperDialog.cxx index a049f25ce..0be0b786b 100644 --- a/src/gui/DeveloperDialog.cxx +++ b/src/gui/DeveloperDialog.cxx @@ -316,7 +316,7 @@ void DeveloperDialog::addTiaTab(const GUI::Font& font) ypos += lineHeight + VGAP * 1; myLateHMoveLabel = new StaticTextWidget(myTab, font, HBORDER + INDENT * 2, ypos + 1, - "Short late HMOVEs for"); + "Short late HMOVE for"); myLateHMoveLabel->setToolTip("Objects react different to late HMOVEs"); wid.push_back(myLateHMoveLabel); ypos += lineHeight + VGAP * 1;