summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormelody <melody@pallet.town>2018-11-13 23:58:53 -0500
committermelody <melody@pallet.town>2018-11-14 00:11:05 -0500
commit255ae044a3e0dd9831779501c90c8da4a2370828 (patch)
treefe96bb4d73a41e12a4e39af703728a3aa00782c0
parent5989a8a4616601db97333ea65694bd927d800ddc (diff)
make unknown method args more generic
-rw-r--r--src/metatile_behavior.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/metatile_behavior.c b/src/metatile_behavior.c
index cc9b7c023..62a102a09 100644
--- a/src/metatile_behavior.c
+++ b/src/metatile_behavior.c
@@ -734,10 +734,9 @@ bool8 MetatileBehavior_UnusedReturnFalse_11(u8 metatileBehavior) { return FALSE;
bool8 MetatileBehavior_UnusedReturnFalse_12(u8 metatileBehavior) { return FALSE; }
bool8 MetatileBehavior_UnusedReturnFalse_13(u8 metatileBehavior) { return FALSE; }
-// TODO: Confirm argument names
-bool8 sub_805A2BC(u8 metatileBehavior, u8 playerDirection)
+bool8 sub_805A2BC(u8 arg1, u8 arg2)
{
- if(gUnknown_8353068[metatileBehavior] & playerDirection)
+ if(gUnknown_8353068[arg1] & arg2)
return TRUE;
else
return FALSE;