mirror of https://github.com/stella-emu/stella.git
updated PlusROM backend wording
This commit is contained in:
parent
a3b34a8bd6
commit
12ccc2d15c
|
@ -2110,7 +2110,7 @@
|
||||||
<td>Cmd + Up arrow</td>
|
<td>Cmd + Up arrow</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Enter/Exit the PlusROM High Score Club setup dialog</td>
|
<td>Enter/Exit the PlusROM backends setup dialog</td>
|
||||||
<td>Shift-Control-Alt + P to enter, Shift-Control-Alt + P/Escape to exit and continue with emulation</td>
|
<td>Shift-Control-Alt + P to enter, Shift-Control-Alt + P/Escape to exit and continue with emulation</td>
|
||||||
<td>Shift-Control-Cmd + P to enter, Shift-Control-Cmd + P/Escape to exit and continue with emulation</td>
|
<td>Shift-Control-Cmd + P to enter, Shift-Control-Cmd + P/Escape to exit and continue with emulation</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -3284,12 +3284,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td><pre>-plusroms.nick <name></pre></td>
|
<td><pre>-plusroms.nick <name></pre></td>
|
||||||
<td>Define a nickname for the PlusROM High Score Club</td>
|
<td>Define a nickname for the PlusROM backends</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td><pre>-plusroms.id <id></pre></td>
|
<td><pre>-plusroms.id <id></pre></td>
|
||||||
<td>Define an ID for the PlusROM High Score Club (30 chars, hex)</td>
|
<td>Define an ID for the PlusROM backends (30 chars, hex)</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -25,14 +25,14 @@ static const int MAX_NICK_LEN = 16;
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
PlusRomsSetupDialog::PlusRomsSetupDialog(OSystem& osystem, DialogContainer& parent,
|
PlusRomsSetupDialog::PlusRomsSetupDialog(OSystem& osystem, DialogContainer& parent,
|
||||||
const GUI::Font& font)
|
const GUI::Font& font)
|
||||||
: InputTextDialog(osystem, parent, font, "Nickname", "PlusROM HSC setup", MAX_NICK_LEN)
|
: InputTextDialog(osystem, parent, font, "Nickname", "PlusROM backends setup", MAX_NICK_LEN)
|
||||||
{
|
{
|
||||||
EditableWidget::TextFilter filter = [](char c) {
|
EditableWidget::TextFilter filter = [](char c) {
|
||||||
return isalnum(c) || (c == ' ') || (c == '_') || (c == '.');
|
return isalnum(c) || (c == ' ') || (c == '_') || (c == '.');
|
||||||
};
|
};
|
||||||
|
|
||||||
setTextFilter(filter);
|
setTextFilter(filter);
|
||||||
setToolTip("Enter your PlusROM High Score Club nickname here.");
|
setToolTip("Enter your PlusROM backends nickname here.");
|
||||||
}
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
Loading…
Reference in New Issue