[Scummvm-git-logs] scummvm master -> 8cef7b8b692b42a83ccafc54e34140c07c80c8d7
antoniou79
noreply at scummvm.org
Sat Jun 17 19:15:52 UTC 2023
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:
8cef7b8b69 JANITORIAL: Fix code indentation
Commit: 8cef7b8b692b42a83ccafc54e34140c07c80c8d7
https://github.com/scummvm/scummvm/commit/8cef7b8b692b42a83ccafc54e34140c07c80c8d7
Author: antoniou79 (a.antoniou79 at gmail.com)
Date: 2023-06-17T22:14:37+03:00
Commit Message:
JANITORIAL: Fix code indentation
Changed paths:
backends/graphics/sdl/sdl-graphics.cpp
diff --git a/backends/graphics/sdl/sdl-graphics.cpp b/backends/graphics/sdl/sdl-graphics.cpp
index 42587b367c3..19f903fb06a 100644
--- a/backends/graphics/sdl/sdl-graphics.cpp
+++ b/backends/graphics/sdl/sdl-graphics.cpp
@@ -464,17 +464,17 @@ Common::Keymap *SdlGraphicsManager::getKeymap() {
keymap->addAction(act);
}
- act = new Action("SCL+", _("Increase the scale factor"));
- act->addDefaultInputMapping("C+A+PLUS");
- act->addDefaultInputMapping("C+A+KP_PLUS");
- act->setCustomBackendActionEvent(kActionIncreaseScaleFactor);
- keymap->addAction(act);
+ act = new Action("SCL+", _("Increase the scale factor"));
+ act->addDefaultInputMapping("C+A+PLUS");
+ act->addDefaultInputMapping("C+A+KP_PLUS");
+ act->setCustomBackendActionEvent(kActionIncreaseScaleFactor);
+ keymap->addAction(act);
- act = new Action("SCL-", _("Decrease the scale factor"));
- act->addDefaultInputMapping("C+A+MINUS");
- act->addDefaultInputMapping("C+A+KP_MINUS");
- act->setCustomBackendActionEvent(kActionDecreaseScaleFactor);
- keymap->addAction(act);
+ act = new Action("SCL-", _("Decrease the scale factor"));
+ act->addDefaultInputMapping("C+A+MINUS");
+ act->addDefaultInputMapping("C+A+KP_MINUS");
+ act->setCustomBackendActionEvent(kActionDecreaseScaleFactor);
+ keymap->addAction(act);
if (hasFeature(OSystem::kFeatureScalers)) {
act = new Action("FLTN", _("Switch to the next scaler"));
More information about the Scummvm-git-logs
mailing list