diff options
author | Marcus Huderle <huderlem@gmail.com> | 2019-04-15 19:24:32 -0500 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-04-16 11:21:13 -0500 |
commit | c7954e12129c3f8b99fa7b002b84a59da654354e (patch) | |
tree | 3ab44eb59d03da6f75b3331e2781859d09bf6e45 /src/pokenav_match_call_ui.c | |
parent | 394c0f5546aa152012f0c812d1e6cf0a696bfe86 (diff) |
Decompile pokenav_unk_4.c through sub_81CB678()
Diffstat (limited to 'src/pokenav_match_call_ui.c')
-rw-r--r-- | src/pokenav_match_call_ui.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pokenav_match_call_ui.c b/src/pokenav_match_call_ui.c index 8134fc00e..72449c7c0 100644 --- a/src/pokenav_match_call_ui.c +++ b/src/pokenav_match_call_ui.c @@ -505,7 +505,7 @@ struct MatchCallWindowState *GetMatchCallWindowStruct(void) return &structPtr->unk888; } -u32 MatchCall_MoveCursorUp(void) +int MatchCall_MoveCursorUp(void) { struct MatchCallWindowState *structPtr; structPtr = GetMatchCallWindowStruct(); @@ -529,7 +529,7 @@ u32 MatchCall_MoveCursorUp(void) } } -u32 MatchCall_MoveCursorDown(void) +int MatchCall_MoveCursorDown(void) { struct MatchCallWindowState *structPtr; structPtr = GetMatchCallWindowStruct(); @@ -554,7 +554,7 @@ u32 MatchCall_MoveCursorDown(void) return 2; } -u32 MatchCall_PageUp(void) +int MatchCall_PageUp(void) { struct MatchCallWindowState *structPtr; s32 scroll; @@ -580,7 +580,7 @@ u32 MatchCall_PageUp(void) } } -u32 MatchCall_PageDown(void) +int MatchCall_PageDown(void) { struct MatchCallWindowState *structPtr; structPtr = GetMatchCallWindowStruct(); |