aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2019-08-12 09:58:49 +0200
committerEugene Sandulenko2019-09-03 17:17:33 +0200
commit0536d53dbe30378071a29a47ed164062b27ec6d3 (patch)
tree59aeafa742f7b911150bdaf7e542572fed64e75f
parent24da0a245c11d7ff6ac1d331610d6879e12beb71 (diff)
downloadscummvm-rg350-0536d53dbe30378071a29a47ed164062b27ec6d3.tar.gz
scummvm-rg350-0536d53dbe30378071a29a47ed164062b27ec6d3.tar.bz2
scummvm-rg350-0536d53dbe30378071a29a47ed164062b27ec6d3.zip
HDB: Fix copy/paste error in 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 13ea536503..3ad3bdb3f0 100644
--- a/engines/hdb/lua-script.cpp
+++ b/engines/hdb/lua-script.cpp
@@ -67,7 +67,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 < #chiste_dialog ) then"}, // 845
+ {"MAP01", "if( chiste_index < getn( chiste_dialog ) )then", "if( chiste_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