Removed HelpStyle (was introduced by RetroDECK)

This commit is contained in:
XargonWan 2025-04-01 21:30:03 +09:00
parent 6846afef5e
commit 1d0fae2861
3 changed files with 2 additions and 10 deletions

View file

@ -49,10 +49,6 @@
#include "InputOverlay.h" #include "InputOverlay.h"
#endif #endif
#if defined(RETRODECK)
#include "HelpStyle.h"
#endif
#include <SDL2/SDL_events.h> #include <SDL2/SDL_events.h>
#include <algorithm> #include <algorithm>
@ -2317,8 +2313,6 @@ void GuiMenu::openESDEConfiguration() {
// RetroDECK: Create a new GuiSettings instance for the ES-DE Configurations menu // RetroDECK: Create a new GuiSettings instance for the ES-DE Configurations menu
auto s = new GuiSettings(_("ES-DE CONFIGURATIONS")); auto s = new GuiSettings(_("ES-DE CONFIGURATIONS"));
HelpStyle style{getHelpStyle()};
// UI SETTINGS // UI SETTINGS
ComponentListRow row; ComponentListRow row;
row.addElement(std::make_shared<TextComponent>(_("UI SETTINGS"), row.addElement(std::make_shared<TextComponent>(_("UI SETTINGS"),

View file

@ -661,9 +661,8 @@ void GuiThemeDownloader::parseThemesList()
#if defined(RETRODECK) #if defined(RETRODECK)
mWindow->pushGui(new GuiMsgBox( mWindow->pushGui(new GuiMsgBox(
getHelpStyle(), _("ES-DE THEME ENGINE WAS UPDATED UPSTREAM. THESE THEMES MAY NOT BE COMPATIBLE WITH THE CURRENT RETRODECK VERSION. "
_("ES-DE THEME ENGINE WAS UPDATED UPSTREAM. THESE THEMES MAY NOT BE COMPATIBLE WITH THE CURRENT RETRODECK VERSION." "CHECK IF A NEW RETRODECK UPDATE IS AVAILABLE, ELSE PLEASE WAIT FOR IT OR PROCEED AT YOUR OWN RISK."),
"CHECK IF A NEW RETRODECK UPDATE IS AVAILABLE, ELSE PLEASE WAIT FOR IT OR PROCEED AT YOUR OWN RISK."),
_("OK"), [] { return; }, "", nullptr, "", nullptr, nullptr, true)); _("OK"), [] { return; }, "", nullptr, "", nullptr, nullptr, true));
#else #else

View file

@ -293,7 +293,6 @@ void ViewController::noGamesDialog()
#if defined(RETRODECK) #if defined(RETRODECK)
// Show a simple message with a "QUIT" option if RETRODECK is defined // Show a simple message with a "QUIT" option if RETRODECK is defined
mNoGamesMessageBox = new GuiMsgBox( mNoGamesMessageBox = new GuiMsgBox(
HelpStyle(),
mNoGamesErrorMessage + mRomDirectory, mNoGamesErrorMessage + mRomDirectory,
_("QUIT"), _("QUIT"),
[] { [] {