updated PlusROM backend wording

This commit is contained in:
Thomas Jentzsch 2021-10-17 14:53:26 +02:00
parent a3b34a8bd6
commit 12ccc2d15c
2 changed files with 5 additions and 5 deletions

View File

@ -2110,7 +2110,7 @@
<td>Cmd + Up arrow</td>
</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-Cmd + P to enter, Shift-Control-Cmd + P/Escape to exit and continue with emulation</td>
</tr>
@ -3284,12 +3284,12 @@
<tr>
<td><pre>-plusroms.nick &lt;name&gt;</pre></td>
<td>Define a nickname for the PlusROM High Score Club</td>
<td>Define a nickname for the PlusROM backends</td>
</tr>
<tr>
<td><pre>-plusroms.id &lt;id&gt;</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>

View File

@ -25,14 +25,14 @@ static const int MAX_NICK_LEN = 16;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
PlusRomsSetupDialog::PlusRomsSetupDialog(OSystem& osystem, DialogContainer& parent,
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) {
return isalnum(c) || (c == ' ') || (c == '_') || (c == '.');
};
setTextFilter(filter);
setToolTip("Enter your PlusROM High Score Club nickname here.");
setToolTip("Enter your PlusROM backends nickname here.");
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -