diff options
-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 |