[Scummvm-git-logs] scummvm master -> 8c3acb7619481bbc55fabf77cb178ae98b67c981

elasota noreply at scummvm.org
Thu May 11 02:30:41 UTC 2023


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
e94ecfe236 VCRUISE: Stub out heroOut opcode.
8c3acb7619 VCRUISE: Fix German CD version hash


Commit: e94ecfe2362bd9f378ad1bea61809634ab737ed0
    https://github.com/scummvm/scummvm/commit/e94ecfe2362bd9f378ad1bea61809634ab737ed0
Author: elasota (ejlasota at gmail.com)
Date: 2023-05-10T22:27:27-04:00

Commit Message:
VCRUISE: Stub out heroOut opcode.

Changed paths:
    engines/vcruise/runtime.cpp


diff --git a/engines/vcruise/runtime.cpp b/engines/vcruise/runtime.cpp
index a1cbdb6b717..54573e15f6d 100644
--- a/engines/vcruise/runtime.cpp
+++ b/engines/vcruise/runtime.cpp
@@ -6414,7 +6414,12 @@ void Runtime::scriptOpRandomInclusive(ScriptArg_t arg) {
 		_scriptStack.push_back(StackValue(_rng->getRandomNumber(stackArgs[0])));
 }
 
-OPCODE_STUB(HeroOut)
+void Runtime::scriptOpHeroOut(ScriptArg_t arg) {
+	TAKE_STACK_INT(3);
+
+	error("HeroOut not implemented");
+}
+
 OPCODE_STUB(HeroGetPos)
 OPCODE_STUB(HeroSetPos)
 


Commit: 8c3acb7619481bbc55fabf77cb178ae98b67c981
    https://github.com/scummvm/scummvm/commit/8c3acb7619481bbc55fabf77cb178ae98b67c981
Author: elasota (ejlasota at gmail.com)
Date: 2023-05-10T22:30:21-04:00

Commit Message:
VCRUISE: Fix German CD version hash

Changed paths:
    engines/vcruise/detection_tables.h


diff --git a/engines/vcruise/detection_tables.h b/engines/vcruise/detection_tables.h
index cb7c7edae94..c49c9990139 100644
--- a/engines/vcruise/detection_tables.h
+++ b/engines/vcruise/detection_tables.h
@@ -76,7 +76,7 @@ static const VCruiseGameDescription gameDescriptions[] = {
 			"reah",
 			"German CD",
 			AD_ENTRY2s("Reah.exe", "be29f9f9fc9a454488f9d2fb68e26326", 305664,
-					   "0170_b.wav", "478a76fe6c311e824f64f0ec1deec1fc", 121220),
+					   "0170_b.wav", "5f84af02d1193ce9c47fe0dc821f0613", 121220),
 			Common::UNK_LANG,
 			Common::kPlatformWindows,
 			ADGF_TESTING,




More information about the Scummvm-git-logs mailing list