[Scummvm-git-logs] scummvm master -> 60fa6053c2fabc3bfe7de8960acab965386b1cad
digitall
noreply at scummvm.org
Wed Apr 10 23:57:04 UTC 2024
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:
60fa6053c2 VCRUISE: Fix GCC Compiler Warnings
Commit: 60fa6053c2fabc3bfe7de8960acab965386b1cad
https://github.com/scummvm/scummvm/commit/60fa6053c2fabc3bfe7de8960acab965386b1cad
Author: D G Turner (digitall at scummvm.org)
Date: 2024-04-11T00:56:38+01:00
Commit Message:
VCRUISE: Fix GCC Compiler Warnings
Changed paths:
engines/vcruise/runtime_scriptexec.cpp
diff --git a/engines/vcruise/runtime_scriptexec.cpp b/engines/vcruise/runtime_scriptexec.cpp
index 71873636418..8960baece5e 100644
--- a/engines/vcruise/runtime_scriptexec.cpp
+++ b/engines/vcruise/runtime_scriptexec.cpp
@@ -2275,10 +2275,14 @@ void Runtime::scriptOpDot(ScriptArg_t arg) {
void Runtime::scriptOpSound(ScriptArg_t arg) {
TAKE_STACK_INT(2);
+
+ debug(1, "TODO: %s() stackArgs[0]:%d stackArgs[1]:%d", __FUNCTION__, stackArgs[0], stackArgs[1]);
}
void Runtime::scriptOpISound(ScriptArg_t arg) {
TAKE_STACK_INT(2);
+
+ debug(1, "TODO: %s() stackArgs[0]:%d stackArgs[1]:%d", __FUNCTION__, stackArgs[0], stackArgs[1]);
}
OPCODE_STUB(USound)
More information about the Scummvm-git-logs
mailing list