aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2019-08-08 19:30:17 +0200
committerEugene Sandulenko2019-09-03 17:17:33 +0200
commitfab015edd29d78e9286ac2021987e4b804a4a6bc (patch)
tree9b41a1dd203f9b05685df06b7dc49c9e187c565d
parentc12a068bcc8d4b593f0475401577c316c71c0104 (diff)
downloadscummvm-rg350-fab015edd29d78e9286ac2021987e4b804a4a6bc.tar.gz
scummvm-rg350-fab015edd29d78e9286ac2021987e4b804a4a6bc.tar.bz2
scummvm-rg350-fab015edd29d78e9286ac2021987e4b804a4a6bc.zip
HDB: Fix script patch for MAP01
-rw-r--r--engines/hdb/lua-script.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hdb/lua-script.cpp b/engines/hdb/lua-script.cpp
index 57fedcf0db..98b6dc3e96 100644
--- a/engines/hdb/lua-script.cpp
+++ b/engines/hdb/lua-script.cpp
@@ -64,7 +64,7 @@ struct ScriptPatch {
{"MAP01", "strsub(", "string.sub("}, // line 23
{"MAP01", "if( covert_index < getn(covert_dialog) ) then", "if( covert_index < #covert_dialog ) then"}, // line 766
- {"MAP01", "if( chiste_index < getn( chiste_dialog ) )then", "if( covert_index < #covert_dialog ) then"}, // 845
+ {"MAP01", "if( chiste_index < getn( chiste_dialog ) )then", "if( covert_index < #chiste_dialog ) then"}, // 845
{"MAP10", "if( getn( beds ) == 0 ) then", "if( #beds == 0 ) then"}, // line 119
{"MAP10", "emptybed_use( %x, %y, %v1, %v2 )", "emptybed_use( x, y, v1, v2 )"}, // line 121