From 48cea696d89fbfd72fc334842af5d05f2eb2577d Mon Sep 17 00:00:00 2001 From: Thomas Jentzsch Date: Sat, 5 Sep 2020 22:24:13 +0200 Subject: [PATCH] Updated StellaSettingsDialog and WhatsNewDialog --- src/gui/StellaSettingsDialog.cxx | 1 + src/gui/WhatsNewDialog.cxx | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gui/StellaSettingsDialog.cxx b/src/gui/StellaSettingsDialog.cxx index 74e8ca35f..fc3d3e4d9 100644 --- a/src/gui/StellaSettingsDialog.cxx +++ b/src/gui/StellaSettingsDialog.cxx @@ -195,6 +195,7 @@ void StellaSettingsDialog::addGameOptions(WidgetArray& wid, int& xpos, int& ypos VarList::push_back(ctrls, "AtariMouse", "ATARIMOUSE"); VarList::push_back(ctrls, "Trakball", "TRAKBALL"); VarList::push_back(ctrls, "Sega Genesis", "GENESIS"); + VarList::push_back(ctrls, "QuadTari", "QUADTARI"); int pwidth = _font.getStringWidth("Sega Genesis"); myLeftPortLabel = new StaticTextWidget(this, _font, xpos, ypos + 1, "Left port "); diff --git a/src/gui/WhatsNewDialog.cxx b/src/gui/WhatsNewDialog.cxx index 7f6c15084..4787d8fd7 100644 --- a/src/gui/WhatsNewDialog.cxx +++ b/src/gui/WhatsNewDialog.cxx @@ -38,7 +38,6 @@ WhatsNewDialog::WhatsNewDialog(OSystem& osystem, DialogContainer& parent, const const int HBORDER = fontWidth * 1.25; int ypos = _th + VBORDER; - // Set preliminary dimensions setSize(MAX_CHARS * fontWidth + HBORDER * 2, max_h, max_w, max_h); @@ -53,8 +52,11 @@ WhatsNewDialog::WhatsNewDialog(OSystem& osystem, DialogContainer& parent, const add(ypos, "added option to playback a game using the Time Machine"); //add(ypos, "allow taking snapshots from within the Time Machine dialog"); add(ypos, "added the ability to access most files that Stella uses from within a ZIP file"); + add(ypos, "extended AtariVox support to handle flow control, so that long phrases are no longer corrupted / cut off"); + add(ypos, "added QuadTari controller support"); add(ypos, "added option to select the audio device"); //add(ypos, "added option to display detected settings info when a ROM is loaded"); + //add(ypos, "added another oddball TIA glitch option for delayed background color"); //add(ypos, "replaced 'Re-disassemble' with 'Disassemble @ current line' in debugger"); //add(ypos, "fixed bug when taking fullscreen snapshots; the dimensions were sometimes cut"); add(ypos, ELLIPSIS + " (for a complete list see 'docs/Changes.txt')");