[Scummvm-git-logs] scummvm master -> 344c1deb321765b08338779e7356fe596d343761
sev-
sev at scummvm.org
Wed Jul 22 16:46:55 UTC 2020
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:
344c1deb32 DIRECTOR: LINGO: Unstubbed 'unLoad' and 'unLoadCast'. They're no op for us
Commit: 344c1deb321765b08338779e7356fe596d343761
https://github.com/scummvm/scummvm/commit/344c1deb321765b08338779e7356fe596d343761
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-07-22T18:46:42+02:00
Commit Message:
DIRECTOR: LINGO: Unstubbed 'unLoad' and 'unLoadCast'. They're no op for us
Changed paths:
engines/director/lingo/lingo-builtins.cpp
diff --git a/engines/director/lingo/lingo-builtins.cpp b/engines/director/lingo/lingo-builtins.cpp
index 5b681976e0..b74f0d80d6 100644
--- a/engines/director/lingo/lingo-builtins.cpp
+++ b/engines/director/lingo/lingo-builtins.cpp
@@ -1873,13 +1873,13 @@ void LB::b_spriteBox(int nargs) {
}
void LB::b_unLoad(int nargs) {
- g_lingo->printSTUBWithArglist("b_unLoad", nargs);
+ // No op for us, we do not unload casts
g_lingo->dropStack(nargs);
}
void LB::b_unLoadCast(int nargs) {
- g_lingo->printSTUBWithArglist("b_unLoadCast", nargs);
+ // No op for us, we do not unload casts
g_lingo->dropStack(nargs);
}
More information about the Scummvm-git-logs
mailing list