[Scummvm-git-logs] scummvm master -> 601696ab1e780dc25d7ddb8ae223ada7751d7e07
dreammaster
dreammaster at scummvm.org
Thu Jul 29 02:20:32 UTC 2021
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:
601696ab1e AGS: recognize alternative name of shell plugin
Commit: 601696ab1e780dc25d7ddb8ae223ada7751d7e07
https://github.com/scummvm/scummvm/commit/601696ab1e780dc25d7ddb8ae223ada7751d7e07
Author: mausimus (73635663+mausimus at users.noreply.github.com)
Date: 2021-07-28T19:20:29-07:00
Commit Message:
AGS: recognize alternative name of shell plugin
There is a circulating version of AGS Shell plugin as agsshell.dll
used by some games (Rosewater). Internally it's the same
ags_shell.dll so simply an alias will allow these games to run.
Changed paths:
engines/ags/plugins/plugin_base.cpp
diff --git a/engines/ags/plugins/plugin_base.cpp b/engines/ags/plugins/plugin_base.cpp
index 29a5bd0587..c5f426201e 100644
--- a/engines/ags/plugins/plugin_base.cpp
+++ b/engines/ags/plugins/plugin_base.cpp
@@ -97,7 +97,7 @@ Plugins::PluginBase *pluginOpen(const char *filename) {
if (fname.equalsIgnoreCase("AGSPalRender"))
return new AGSPalRender::AGSPalRender();
- if (fname.equalsIgnoreCase("ags_shell"))
+ if (fname.equalsIgnoreCase("ags_shell") || fname.equalsIgnoreCase("agsshell"))
return new AGSShell::AGSShell();
if (fname.equalsIgnoreCase("AGSSnowRain") || fname.equalsIgnoreCase("ags_snowrain"))
More information about the Scummvm-git-logs
mailing list