diff options
author | Treeki <treeki@gmail.com> | 2012-10-20 23:29:02 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-10-20 23:29:02 +0200 |
commit | 8e36bd0d807b184cf116cac8a875ee9d70fd6534 (patch) | |
tree | 8de5e64d683a15d2797cfd93e30f91f4f0379853 | |
parent | ec09fdfd64399c52ae492ac07dc6f84f9522965e (diff) | |
download | kamek-8e36bd0d807b184cf116cac8a875ee9d70fd6534.tar.gz kamek-8e36bd0d807b184cf116cac8a875ee9d70fd6534.zip |
fixed JP... hopefully?
Diffstat (limited to '')
-rwxr-xr-x | tools/mapfile_tool.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/mapfile_tool.py b/tools/mapfile_tool.py index cab9ec2..d5a8512 100755 --- a/tools/mapfile_tool.py +++ b/tools/mapfile_tool.py @@ -185,7 +185,7 @@ def fix_offs_jpn_v1(offs): if offs >= 0x80945158 and offs <= 0x8098A36B:
return offs - 0x718
- if offs >= 0x8098A478 and offs <= 0x8098F81F:
+ if offs >= 0x8098A478 and offs <= 0x8098FF18:
return offs - 0x6F8
# d_enemiesNP
@@ -193,11 +193,11 @@ def fix_offs_jpn_v1(offs): if offs >= 0x809A2CA0 and offs <= 0xDEADBEEF:
return offs - 0x700
- if offs >= 0x8010F430 and offs <= 0xDEADBEEF:
- return offs - 0x330
+ #if offs >= 0x8010F430 and offs <= 0xDEADBEEF:
+ # return offs - 0x330
- if offs >= 0x8010F430 and offs <= 0xDEADBEEF:
- return offs - 0x330
+ #if offs >= 0x8010F430 and offs <= 0xDEADBEEF:
+ # return offs - 0x330
return offs
|