[Scummvm-git-logs] scummvm master -> 9d0231db683d2ab5aa8b3ea37a16c405b3d0168c
sev-
noreply at scummvm.org
Wed Sep 17 07:56:48 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
9d0231db68 WAGE: Enable "Save As..." menu item together with Save menu
Commit: 9d0231db683d2ab5aa8b3ea37a16c405b3d0168c
https://github.com/scummvm/scummvm/commit/9d0231db683d2ab5aa8b3ea37a16c405b3d0168c
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-09-17T09:56:38+02:00
Commit Message:
WAGE: Enable "Save As..." menu item together with Save menu
Changed paths:
engines/wage/gui.cpp
diff --git a/engines/wage/gui.cpp b/engines/wage/gui.cpp
index 295a83bbdc6..feed8231468 100644
--- a/engines/wage/gui.cpp
+++ b/engines/wage/gui.cpp
@@ -285,7 +285,7 @@ bool Gui::processEvent(Common::Event &event) {
_engine->sayText(menuItem->text, Common::TextToSpeechManager::INTERRUPT);
_selectedMenuItem = i;
}
-
+
mouseOnItem = true;
break;
}
@@ -474,6 +474,7 @@ void Gui::enableNewGameMenus() {
void Gui::enableSave() {
_menu->enableCommand(kMenuFile, kMenuActionSave, true);
+ _menu->enableCommand(kMenuFile, kMenuActionSaveAs, true);
}
void Gui::enableRevert() {
More information about the Scummvm-git-logs
mailing list