[Scummvm-git-logs] scummvm master -> eef5d107ca67457df695c6909be4dd159a51784a
tag2015
noreply at scummvm.org
Thu Aug 7 22:24:41 UTC 2025
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
33807ecc6c AGS: Fix build
eef5d107ca AGS: update spacesim entry
Commit: 33807ecc6c08281d92d6ac87435ab9b98a292716
https://github.com/scummvm/scummvm/commit/33807ecc6c08281d92d6ac87435ab9b98a292716
Author: Walter Agazzi (walter.agazzi at protonmail.com)
Date: 2025-08-08T00:17:44+02:00
Commit Message:
AGS: Fix build
Changed paths:
engines/ags/plugins/ags_maya/ags_maya.cpp
diff --git a/engines/ags/plugins/ags_maya/ags_maya.cpp b/engines/ags/plugins/ags_maya/ags_maya.cpp
index d95230efcce..87c92a80263 100644
--- a/engines/ags/plugins/ags_maya/ags_maya.cpp
+++ b/engines/ags/plugins/ags_maya/ags_maya.cpp
@@ -67,8 +67,8 @@ void AGSMaya::FDiv(ScriptMethodParams ¶ms) {
PARAMS2(int, value1, int, value2);
if (value2) {
- float division, decimals;
- division = value1 / (float)value2;
+ double division, decimals;
+ division = value1 / (double)value2;
modf(division, &decimals);
params._result = floor(division) * 1000 + decimals * 1000;
} else {
Commit: eef5d107ca67457df695c6909be4dd159a51784a
https://github.com/scummvm/scummvm/commit/eef5d107ca67457df695c6909be4dd159a51784a
Author: Walter Agazzi (walter.agazzi at protonmail.com)
Date: 2025-08-08T00:18:13+02:00
Commit Message:
AGS: update spacesim entry
Changed paths:
engines/ags/detection_tables.h
diff --git a/engines/ags/detection_tables.h b/engines/ags/detection_tables.h
index 0fc2be89264..bc4dcd3bf68 100644
--- a/engines/ags/detection_tables.h
+++ b/engines/ags/detection_tables.h
@@ -4248,9 +4248,6 @@ const AGSGameDescription GAME_DESCRIPTIONS[] = {
// using ags_Maya plugin, partially implemented
UNSUPPORTED_GAME_ENTRY_LANG("officeolympics", "Oo.exe", "465f972675db2da6040518221af5b0ba", 30378663, Common::IT_ITA),
- // using unsupported agsEngine plugin
- UNSUPPORTED_DEMO_ENTRY_EN("spacesim", "space_3d.exe", "8538afa638531020f79df88aec0fb797", 1667537),
-
// using unsupported ags_sockets plugin
UNSUPPORTED_GAME_ENTRY_EN("starshiplight", "strship1.exe", "7971a7c02d414dc8cb33b6ec36080b91", 32805168), // Beta
UNSUPPORTED_GAME_ENTRY_EN("starshiplight", "strship1.ags", "9dca4b575740e300af265aa9ec234f71", 30308128),
@@ -4267,6 +4264,7 @@ const AGSGameDescription GAME_DESCRIPTIONS[] = {
UNSUPPORTED_GAME_ENTRY_EN("questblackdiamond", "qftbd.exe", "ba27688a81119b49a550f3bbd8d6d003", 632435),
UNSUPPORTED_DEMO_ENTRY_EN("smgilbert", "s&m2_demo_ENG.exe", "c87aa6377abc18c1a1b2968ae6db08eb", 4141303),
UNSUPPORTED_DEMO_ENTRY_LANG("smgilbert", "s&m2_demo.exe", "c87aa6377abc18c1a1b2968ae6db08eb", 4268861, Common::IT_ITA),
+ UNSUPPORTED_DEMO_ENTRY_EN("spacesim", "space_3d.exe", "8538afa638531020f79df88aec0fb797", 1667537),
UNSUPPORTED_GAME_ENTRY_EN("tomhanksaway", "Tom Hanks Away.exe", "e88fd6a23a5e498d7b0d50e3bb914085", 1589035),
UNSUPPORTED_GAME_ENTRY_EN("whowantstoliveforever", "WWtLF.exe", "f3a13b2d6c2e0fe04c6f466062920e23", 6917937),
// Even with AGS interpreter hacked to specify plugin, errors on loading room107
More information about the Scummvm-git-logs
mailing list