mirror of https://github.com/stella-emu/stella.git
minor change in Inputdialog (AtariVox)
This commit is contained in:
parent
8b0ff2746f
commit
c9945e48e5
Binary file not shown.
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
|
@ -3344,7 +3344,7 @@
|
|||
<tr><td>Swap Stelladaptor ports</td><td>Swap the order of the detected Stelladaptors/2600-daptors (see <b>Advanced Configuration - <a href="#Adaptor">Stelladaptor/2600-daptor Support</a></b>)</td><td>-saport</td></tr>
|
||||
<tr><td>Joystick database</td><td>Show all joysticks that Stella knows about, with the option to remove them</td><td> </td></tr>
|
||||
<tr><td>Erase EEPROM</td><td>Erase the whole AtariVox/SaveKey flash memory</td><td> </td></tr>
|
||||
<tr><td>AVox serial port</td><td>Described in further detail in <b>Advanced Configuration - <a href="#AtariVox">AtariVox/SaveKey Support</a></b> </td><td>-avoxport</td></tr>
|
||||
<tr><td>AtariVox serial port</td><td>Described in further detail in <b>Advanced Configuration - <a href="#AtariVox">AtariVox/SaveKey Support</a></b> </td><td>-avoxport</td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -221,9 +221,9 @@ void InputDialog::addDevicePortTab()
|
|||
|
||||
// Add AtariVox serial port
|
||||
ypos += lineHeight + VGAP * 3;
|
||||
lwidth = _font.getStringWidth("AVox serial port ");
|
||||
lwidth = _font.getStringWidth("AtariVox serial port ");
|
||||
fwidth = _w - HBORDER * 2 - 2 - lwidth;
|
||||
new StaticTextWidget(myTab, _font, HBORDER, ypos + 2, "AVox serial port ");
|
||||
new StaticTextWidget(myTab, _font, HBORDER, ypos + 2, "AtariVox serial port ");
|
||||
myAVoxPort = new EditTextWidget(myTab, _font, HBORDER + lwidth, ypos,
|
||||
fwidth, fontHeight);
|
||||
wid.push_back(myAVoxPort);
|
||||
|
|
Loading…
Reference in New Issue