diff options
author | Treeki <treeki@gmail.com> | 2012-10-21 04:30:17 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-10-21 04:30:17 +0200 |
commit | 68b2240d079fe687b66b2afb3ed63928f5d05dfa (patch) | |
tree | 2486e1163eda0790a88745b0a7c33a12d4d660f8 | |
parent | 8e36bd0d807b184cf116cac8a875ee9d70fd6534 (diff) | |
download | kamek-68b2240d079fe687b66b2afb3ed63928f5d05dfa.tar.gz kamek-68b2240d079fe687b66b2afb3ed63928f5d05dfa.zip |
fixed the bosses not working in Japan
Diffstat (limited to '')
-rwxr-xr-x | tools/mapfile_tool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mapfile_tool.py b/tools/mapfile_tool.py index d5a8512..f00f828 100755 --- a/tools/mapfile_tool.py +++ b/tools/mapfile_tool.py @@ -190,7 +190,7 @@ def fix_offs_jpn_v1(offs): # d_enemiesNP
# this offset starts at the .rel header
- if offs >= 0x809A2CA0 and offs <= 0xDEADBEEF:
+ if offs >= 0x80990800 and offs <= 0xDEADBEEF:
return offs - 0x700
#if offs >= 0x8010F430 and offs <= 0xDEADBEEF:
|