SCUMM: Update Original GUI checkbox description

This notifies the user that in order to get the quit confirmation
dialogs, the "Ask for confirmation on exit" toggle has to be active.
This commit is contained in:
AndywinXp 2023-01-19 13:01:45 +01:00 committed by Eugene Sandulenko
parent e8dfcb42f6
commit 7a10e3ea30
2 changed files with 6 additions and 2 deletions

View File

@ -1048,7 +1048,10 @@ GUI::CheckboxWidget *ScummOptionsContainerWidget::createEnhancementsCheckbox(Gui
}
GUI::CheckboxWidget *ScummOptionsContainerWidget::createOriginalGUICheckbox(GuiObject *boss, const Common::String &name) {
return new GUI::CheckboxWidget(boss, name, _("Enable the original GUI and Menu"), _("Allow the game to use the in-engine graphical interface and the original save/load menu."));
return new GUI::CheckboxWidget(boss, name,
_("Enable the original GUI and Menu"),
_("Allow the game to use the in-engine graphical interface and the original save/load menu. Use it together with the \"Ask for confirmation on exit\" for a more complete experience.")
);
}
void ScummOptionsContainerWidget::updateAdjustmentSlider(GUI::SliderWidget *slider, GUI::StaticTextWidget *value) {

View File

@ -664,7 +664,8 @@ static const ExtraGuiOption audioOverride {
static const ExtraGuiOption enableOriginalGUI = {
_s("Enable the original GUI and Menu"),
_s("Allow the game to use the in-engine graphical interface and the original save/load menu."),
_s("Allow the game to use the in-engine graphical interface and the original save/load menu. \
Use it together with the \"Ask for confirmation on exit\" for a more complete experience."),
"original_gui",
true,
0,