diff options
author | Treeki <treeki@gmail.com> | 2012-11-23 23:47:36 +0100 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-11-23 23:47:36 +0100 |
commit | 29866fe6126d185f75002c3fd3c5f9214e72ddeb (patch) | |
tree | 21f75c906865ada583e7181edb82e888c4f00d09 | |
parent | 7a17b2265fafd874c907a529f205be466a3120da (diff) | |
download | kamek-29866fe6126d185f75002c3fd3c5f9214e72ddeb.tar.gz kamek-29866fe6126d185f75002c3fd3c5f9214e72ddeb.zip |
fixed topman sensor size
Diffstat (limited to '')
-rw-r--r-- | src/topman.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/topman.cpp b/src/topman.cpp index 5a313ae..56493da 100644 --- a/src/topman.cpp +++ b/src/topman.cpp @@ -349,7 +349,7 @@ int daTopman::onCreate() { // These structs tell stupid collider what to collide with - these are from koopa troopa static const u8 one[16] = {0,0,0,1, 0,0,0xC0,0, 0,0,0x40,0, 0,0,0,0}; static const u8 two[12] = {0,0,0,0, 0,0,0,0, 0,0,0xC0,0}; - static const u8 three[16] = {0,0,0,1, 0,0,0x60,0, 0,0,0x90,0, 0,0,0x60,0}; + static const u8 three[16] = {0,0,0,1, 0,0,0x60,0, 0,0,0x90,0, 0,0,0xE0,0}; collMgr.Init(this, one, two, three); collMgr.execute(); |