diff options
author | Eugene Sandulenko | 2019-08-04 22:49:27 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:31 +0200 |
commit | c4495e5449cdc1fe8d09a4fef3200567b6a7f548 (patch) | |
tree | 0a05b92e97962f4c854601dd9d5badc04ae9d052 /engines/hdb | |
parent | 25eaaf38fba239ad88786e16b8546a6d5de18ebc (diff) | |
download | scummvm-rg350-c4495e5449cdc1fe8d09a4fef3200567b6a7f548.tar.gz scummvm-rg350-c4495e5449cdc1fe8d09a4fef3200567b6a7f548.tar.bz2 scummvm-rg350-c4495e5449cdc1fe8d09a4fef3200567b6a7f548.zip |
HDB: Added commented out credits debugging patch
Diffstat (limited to 'engines/hdb')
-rw-r--r-- | engines/hdb/lua-script.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/hdb/lua-script.cpp b/engines/hdb/lua-script.cpp index a34028cfa6..495d30c604 100644 --- a/engines/hdb/lua-script.cpp +++ b/engines/hdb/lua-script.cpp @@ -94,6 +94,9 @@ struct ScriptPatch { {"MAP30", "rots = 13 + random( 4 )", "rots = 13 + math.random( 4 )"}, // line 258 {"MAP30", "if i3 > getn(tiles)", "if i3 > #tiles"}, // line 261 + // Jump straight to credits + //{"CINE_OUTRO", "-- delegate", "-- delegate\nCine_FadeOutBlack( 40 )\nCredits()"}, + {NULL, NULL, NULL} }; |