[Scummvm-git-logs] scummvm master -> 98d68b3cea4a856193fd4c30f1326a75fb73be11

dreammaster paulfgilbert at gmail.com
Fri Aug 23 06:05:36 CEST 2019


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:
98d68b3cea XEEN: Fix pitfall destinations in Southern Tower


Commit: 98d68b3cea4a856193fd4c30f1326a75fb73be11
    https://github.com/scummvm/scummvm/commit/98d68b3cea4a856193fd4c30f1326a75fb73be11
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2019-08-22T21:05:28-07:00

Commit Message:
XEEN: Fix pitfall destinations in Southern Tower

Changed paths:
    engines/xeen/patcher.cpp


diff --git a/engines/xeen/patcher.cpp b/engines/xeen/patcher.cpp
index 10c8664..c8939e9 100644
--- a/engines/xeen/patcher.cpp
+++ b/engines/xeen/patcher.cpp
@@ -38,12 +38,16 @@ struct ScriptEntry {
 const byte DS_MAP54_LINE8[] = { 8, 10, 10, DIR_EAST, 8, OP_MoveWallObj, 20, 100, 100 };
 const byte SW_MAP53_LINE8[] = { 5, 14, 6, DIR_EAST, 8, OP_Exit };
 const byte DS_MAP116[] = { 9, 10, 6, 4, 2, OP_TakeOrGive, 0, 0, 103, 127 };
+const byte DS_MAP62_PIT1[] = { 9, 11, 8, DIR_ALL, 4, OP_FallToMap, 61, 11, 8, 0 };
+const byte DS_MAP62_PIT2[] = { 9, 7, 4, DIR_ALL, 4, OP_FallToMap, 61, 7, 4, 0 };
 
-#define SCRIPT_PATCHES_COUNT 3
+#define SCRIPT_PATCHES_COUNT 6
 static const ScriptEntry SCRIPT_PATCHES[] = {
 	{ GType_DarkSide, 54, DS_MAP54_LINE8 },	// Fix curtain on level 2 of Ellinger's Tower
 	{ GType_Swords, 53, SW_MAP53_LINE8 },	// Fix chest in Hart having gems, but saying "Nothing Here"
-	{ GType_DarkSide, 116, DS_MAP116 }		// Fix statue in Dark Tower setting invalid world flag
+	{ GType_DarkSide, 116, DS_MAP116 },		// Fix statue in Dark Tower setting invalid world flag
+	{ GType_DarkSide, 62, DS_MAP62_PIT1 },	// Fix fall position for pit
+	{ GType_DarkSide, 62, DS_MAP62_PIT2 }	// Fix fall position for pit
 };
 
 /*------------------------------------------------------------------------*/





More information about the Scummvm-git-logs mailing list