aboutsummaryrefslogtreecommitdiff
path: root/gui/options.cpp
diff options
context:
space:
mode:
authorThierry Crozat2016-10-12 19:59:00 +0100
committerThierry Crozat2016-10-12 19:59:00 +0100
commiteef7d91fe1631e44cb5909fb6d0121f18587b637 (patch)
treed1e3b4f38ae94cf40866cab9dec5c92e9c5997a7 /gui/options.cpp
parent2cb0e45c630e568ef7a4c7b5f0f195f0d67f92ce (diff)
downloadscummvm-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
Diffstat (limited to 'gui/options.cpp')
-rw-r--r--gui/options.cpp4
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