diff options
author | Eugene Sandulenko | 2019-07-20 11:57:40 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:25 +0200 |
commit | 74e6168e0a35e9f71a571987e09998209e2cf6cb (patch) | |
tree | 51465c58eb191aae5fdae38351c42b4f3c394122 /engines | |
parent | 54c94a9b257a0dbbba84098b23a203abcc973ed6 (diff) | |
download | scummvm-rg350-74e6168e0a35e9f71a571987e09998209e2cf6cb.tar.gz scummvm-rg350-74e6168e0a35e9f71a571987e09998209e2cf6cb.tar.bz2 scummvm-rg350-74e6168e0a35e9f71a571987e09998209e2cf6cb.zip |
HDB: Added script patch for MAP29.LUA
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hdb/lua-script.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/hdb/lua-script.cpp b/engines/hdb/lua-script.cpp index 3f3ec23208..28ae8f513b 100644 --- a/engines/hdb/lua-script.cpp +++ b/engines/hdb/lua-script.cpp @@ -65,6 +65,8 @@ struct ScriptPatch { {"MAP21.LUA", "mapstring = strsub( LASTMAP, 1, 5 )", "mapstring = string.sub( LASTMAP, 1, 5 )"}, // line 105 + {"MAP29.LUA", "Message( format( \"", "Message( string.format( \""}, // line 195 + {"MAP30.LUA", "if i1 > getn(tiles)", "if i1 > #tiles"}, // line 211 {"MAP30.LUA", "if i2 > getn(tiles)", "if i2 > #tiles"}, // line 212 {"MAP30.LUA", "if i3 > getn(tiles)", "if i3 > #tiles"}, // line 213 |