Updated StellaSettingsDialog and WhatsNewDialog

This commit is contained in:
Thomas Jentzsch 2020-09-05 22:24:13 +02:00
parent 146fe3783c
commit 4a3503637e
2 changed files with 4 additions and 1 deletions

View File

@ -195,6 +195,7 @@ void StellaSettingsDialog::addGameOptions(WidgetArray& wid, int& xpos, int& ypos
VarList::push_back(ctrls, "AtariMouse", "ATARIMOUSE"); VarList::push_back(ctrls, "AtariMouse", "ATARIMOUSE");
VarList::push_back(ctrls, "Trakball", "TRAKBALL"); VarList::push_back(ctrls, "Trakball", "TRAKBALL");
VarList::push_back(ctrls, "Sega Genesis", "GENESIS"); VarList::push_back(ctrls, "Sega Genesis", "GENESIS");
VarList::push_back(ctrls, "QuadTari", "QUADTARI");
int pwidth = _font.getStringWidth("Sega Genesis"); int pwidth = _font.getStringWidth("Sega Genesis");
myLeftPortLabel = new StaticTextWidget(this, _font, xpos, ypos + 1, "Left port "); myLeftPortLabel = new StaticTextWidget(this, _font, xpos, ypos + 1, "Left port ");

View File

@ -38,7 +38,6 @@ WhatsNewDialog::WhatsNewDialog(OSystem& osystem, DialogContainer& parent, const
const int HBORDER = fontWidth * 1.25; const int HBORDER = fontWidth * 1.25;
int ypos = _th + VBORDER; int ypos = _th + VBORDER;
// Set preliminary dimensions // Set preliminary dimensions
setSize(MAX_CHARS * fontWidth + HBORDER * 2, max_h, setSize(MAX_CHARS * fontWidth + HBORDER * 2, max_h,
max_w, 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, "added option to playback a game using the Time Machine");
//add(ypos, "allow taking snapshots from within the Time Machine dialog"); //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, "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 select the audio device");
//add(ypos, "added option to display detected settings info when a ROM is loaded"); //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, "replaced 'Re-disassemble' with 'Disassemble @ current line' in debugger");
//add(ypos, "fixed bug when taking fullscreen snapshots; the dimensions were sometimes cut"); //add(ypos, "fixed bug when taking fullscreen snapshots; the dimensions were sometimes cut");
add(ypos, ELLIPSIS + " (for a complete list see 'docs/Changes.txt')"); add(ypos, ELLIPSIS + " (for a complete list see 'docs/Changes.txt')");