[Scummvm-git-logs] scummvm master -> eef7d91fe1631e44cb5909fb6d0121f18587b637

criezy criezy at scummvm.org
Wed Oct 12 20:59:20 CEST 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
eef7d91fe1 GUI: Fix wrong error messages when failing to change some graphics settings


Commit: eef7d91fe1631e44cb5909fb6d0121f18587b637
    https://github.com/scummvm/scummvm/commit/eef7d91fe1631e44cb5909fb6d0121f18587b637
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2016-10-12T19:59:00+01:00

Commit Message:
GUI: Fix wrong error messages when failing to change some graphics settings

Changed paths:
    gui/options.cpp



diff --git a/gui/options.cpp b/gui/options.cpp
index 6de808c..1f6683d 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





More information about the Scummvm-git-logs mailing list