[Scummvm-git-logs] scummvm master -> 494409db1b0e580933e9b5cf465b02baafba4a15
dreammaster
noreply at scummvm.org
Tue Jun 6 04:53:53 UTC 2023
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
027d3e7a5c MM: MM1: Allow switching party members at market
494409db1b MM: Generate mm.dat engine data file
Commit: 027d3e7a5c480ae8cf2f1cfa8ed07fb8be2737f0
https://github.com/scummvm/scummvm/commit/027d3e7a5c480ae8cf2f1cfa8ed07fb8be2737f0
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2023-06-05T21:52:21-07:00
Commit Message:
MM: MM1: Allow switching party members at market
It doesn't do anything, since food is bought for the whole
party rather than one user at a time. But it doesn't hurt,
and may help avoid players getting confused.
Changed paths:
engines/mm/mm1/views_enh/locations/market.cpp
diff --git a/engines/mm/mm1/views_enh/locations/market.cpp b/engines/mm/mm1/views_enh/locations/market.cpp
index dbc493aa477..d26419c7686 100644
--- a/engines/mm/mm1/views_enh/locations/market.cpp
+++ b/engines/mm/mm1/views_enh/locations/market.cpp
@@ -90,9 +90,9 @@ bool Market::msgAction(const ActionMessage &msg) {
} else if (msg._action == KEYBIND_ESCAPE) {
leave();
return true;
+ } else {
+ return Location::msgAction(msg);
}
-
- return false;
}
Commit: 494409db1b0e580933e9b5cf465b02baafba4a15
https://github.com/scummvm/scummvm/commit/494409db1b0e580933e9b5cf465b02baafba4a15
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2023-06-05T21:53:35-07:00
Commit Message:
MM: Generate mm.dat engine data file
Changed paths:
dists/engine-data/mm.dat
diff --git a/dists/engine-data/mm.dat b/dists/engine-data/mm.dat
index e69de29bb2d..ee8c91a010f 100644
Binary files a/dists/engine-data/mm.dat and b/dists/engine-data/mm.dat differ
More information about the Scummvm-git-logs
mailing list