From eef7d91fe1631e44cb5909fb6d0121f18587b637 Mon Sep 17 00:00:00 2001 From: Thierry Crozat Date: Wed, 12 Oct 2016 19:59:00 +0100 Subject: GUI: Fix wrong error messages when failing to change some graphics settings --- gui/options.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gui/options.cpp') diff --git a/gui/options.cpp b/gui/options.cpp index 6de808ce9c..1f6683d388 100644 --- a/gui/options.cpp +++ b/gui/options.cpp @@ -433,13 +433,13 @@ void OptionsDialog::close() { if (gfxError & OSystem::kTransactionAspectRatioFailed) { ConfMan.setBool("aspect_ratio", g_system->getFeatureState(OSystem::kFeatureAspectRatioCorrection), _domain); message += "\n"; - message += _("the fullscreen setting could not be changed"); + message += _("the aspect ratio setting could not be changed"); } if (gfxError & OSystem::kTransactionFullscreenFailed) { ConfMan.setBool("fullscreen", g_system->getFeatureState(OSystem::kFeatureFullscreenMode), _domain); message += "\n"; - message += _("the aspect ratio setting could not be changed"); + message += _("the fullscreen setting could not be changed"); } // And display the error -- cgit v1.2.3