diff --git a/docs/index.html b/docs/index.html index 41be21bac..85d019040 100644 --- a/docs/index.html +++ b/docs/index.html @@ -3172,9 +3172,9 @@ Save pathSpecifies where to save snapshots-snapsavedir Continuous snapshot intervalInterval (in seconds) between snapshots-ssinterval - Use actual ROM nameUse the actual ROM filename instead of the internal database name.-snapname + Use actual ROM nameUse the actual ROM filename instead of the internal database name-snapname Overwrite existing filesWhether to overwrite old snapshots-sssingle - Ignore scaling (1x mode)Save snapshot in 1x mode without scaling-ss1x + Create pixel-exact image (no zoom/post-processing)Save snapshot using the exact pixels from the TIA image, without zoom or any post-processing effects-ss1x @@ -4081,7 +4081,7 @@ Ms Pac-Man (Stella extended codes): Display.VCenter: Indicates the offset for the vertical center of the display. - The value must be n such that -5 <= n <= 5. + The value must be n such that -20 <= n <= 20. diff --git a/src/gui/SnapshotDialog.cxx b/src/gui/SnapshotDialog.cxx index 870a82b54..e7f5795ed 100644 --- a/src/gui/SnapshotDialog.cxx +++ b/src/gui/SnapshotDialog.cxx @@ -89,7 +89,7 @@ SnapshotDialog::SnapshotDialog(OSystem& osystem, DialogContainer& parent, // Snapshot in 1x mode (ignore scaling) ypos += lineHeight + VGAP; mySnap1x = new CheckboxWidget(this, font, xpos, ypos, - "Ignore scaling (1x mode)"); + "Create pixel-exact image (no zoom/post-processing)"); wid.push_back(mySnap1x); // Add Defaults, OK and Cancel buttons