[Scummvm-git-logs] scummvm master -> edcce8744f7a9bf7bd1bf1927fe095ccf27e2c3c
lephilousophe
noreply at scummvm.org
Tue Apr 19 16:37:32 UTC 2022
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:
edcce8744f AGS: Fix build on AmigaOS and NDS
Commit: edcce8744f7a9bf7bd1bf1927fe095ccf27e2c3c
https://github.com/scummvm/scummvm/commit/edcce8744f7a9bf7bd1bf1927fe095ccf27e2c3c
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2022-04-19T18:37:09+02:00
Commit Message:
AGS: Fix build on AmigaOS and NDS
Changed paths:
engines/ags/engine/script/cc_instance.cpp
diff --git a/engines/ags/engine/script/cc_instance.cpp b/engines/ags/engine/script/cc_instance.cpp
index 23766968dd7..3bbbc52606d 100644
--- a/engines/ags/engine/script/cc_instance.cpp
+++ b/engines/ags/engine/script/cc_instance.cpp
@@ -285,7 +285,7 @@ int ccInstance::CallScriptFunction(const char *funcname, int32_t numargs, const
int k;
char mangledName[200];
size_t mangled_len = snprintf(mangledName, sizeof(mangledName), "%s$", funcname);
- int export_args = 0;
+ int32_t export_args = 0;
for (k = 0; k < instanceof->numexports; k++) {
char *thisExportName = instanceof->exports[k];
More information about the Scummvm-git-logs
mailing list