diff options
author | ultima-soul <akshayjhanji@hotmail.com> | 2020-03-15 08:12:39 -0700 |
---|---|---|
committer | ultima-soul <akshayjhanji@hotmail.com> | 2020-03-15 08:12:39 -0700 |
commit | dd24bd3116021039c136a44470ee7c87e6118d8f (patch) | |
tree | 6335078d57b370ec80ace1c1b2cf449aa725ac75 /src/fieldmap.c | |
parent | 96b7836d482596232d1f3e78fb0a8e3ce7f9d6d5 (diff) |
Fix fakematch and match nonmatching.
Diffstat (limited to 'src/fieldmap.c')
-rw-r--r-- | src/fieldmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fieldmap.c b/src/fieldmap.c index 3e61c6c29..ecb9b7c3a 100644 --- a/src/fieldmap.c +++ b/src/fieldmap.c @@ -460,7 +460,7 @@ u32 MapGridGetMetatileAttributeAt(s16 x, s16 y, u8 attr) return GetBehaviorByMetatileIdAndMapLayout(gMapHeader.mapLayout, metatileId, attr); } -u32 MapGridGetMetatileBehaviorAt(s32 x, s32 y) +u32 MapGridGetMetatileBehaviorAt(s16 x, s16 y) { return MapGridGetMetatileAttributeAt(x, y, 0); } |