Changed the name of the quit entry if the quit menu has been deactivated.

This commit is contained in:
Leon Styhre 2020-12-25 22:49:40 +01:00
parent 65c1e9880e
commit 50d8c7eb30

View file

@ -61,7 +61,7 @@ GuiMenu::GuiMenu(Window* window) : GuiComponent(window),
if (Settings::getInstance()->getBool("ShowQuitMenu"))
addEntry("QUIT", 0x777777FF, true, [this] {openQuitMenu(); });
else
addEntry("QUIT", 0x777777FF, false, [this] {openQuitMenu(); });
addEntry("QUIT EMULATIONSTATION", 0x777777FF, false, [this] {openQuitMenu(); });
}
addChild(&mMenu);