diff options
author | Thierry Crozat | 2016-10-12 19:59:00 +0100 |
---|---|---|
committer | Thierry Crozat | 2016-10-12 19:59:00 +0100 |
commit | eef7d91fe1631e44cb5909fb6d0121f18587b637 (patch) | |
tree | d1e3b4f38ae94cf40866cab9dec5c92e9c5997a7 | |
parent | 2cb0e45c630e568ef7a4c7b5f0f195f0d67f92ce (diff) | |
download | scummvm-rg350-eef7d91fe1631e44cb5909fb6d0121f18587b637.tar.gz scummvm-rg350-eef7d91fe1631e44cb5909fb6d0121f18587b637.tar.bz2 scummvm-rg350-eef7d91fe1631e44cb5909fb6d0121f18587b637.zip |
GUI: Fix wrong error messages when failing to change some graphics settings
-rw-r--r-- | gui/options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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 |