From 3feb843a5372ed3e7c2d2cd3484a64862036d52a Mon Sep 17 00:00:00 2001 From: Thomas Jentzsch Date: Sun, 17 Oct 2021 14:53:26 +0200 Subject: [PATCH] updated PlusROM backend wording --- docs/index.html | 6 +++--- src/gui/PlusRomsSetupDialog.cxx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/index.html b/docs/index.html index 5b106f150..6f51b3a59 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2110,7 +2110,7 @@ Cmd + Up arrow - Enter/Exit the PlusROM High Score Club setup dialog + Enter/Exit the PlusROM backends setup dialog Shift-Control-Alt + P to enter, Shift-Control-Alt + P/Escape to exit and continue with emulation Shift-Control-Cmd + P to enter, Shift-Control-Cmd + P/Escape to exit and continue with emulation @@ -3284,12 +3284,12 @@
-plusroms.nick <name>
- Define a nickname for the PlusROM High Score Club + Define a nickname for the PlusROM backends
-plusroms.id <id>
- Define an ID for the PlusROM High Score Club (30 chars, hex) + Define an ID for the PlusROM backends (30 chars, hex) diff --git a/src/gui/PlusRomsSetupDialog.cxx b/src/gui/PlusRomsSetupDialog.cxx index e39af8b28..8e92882db 100644 --- a/src/gui/PlusRomsSetupDialog.cxx +++ b/src/gui/PlusRomsSetupDialog.cxx @@ -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."); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -