mirror of https://github.com/stella-emu/stella.git
Updated StellaSettingsDialog and WhatsNewDialog
This commit is contained in:
parent
fc5f3bb8d7
commit
48cea696d8
|
@ -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 ");
|
||||
|
|
|
@ -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')");
|
||||
|
|
Loading…
Reference in New Issue