summaryrefslogtreecommitdiff
path: root/src/match_call.c
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2019-04-14 13:21:06 -0500
committerhuderlem <huderlem@gmail.com>2019-04-14 13:44:44 -0500
commitf40f2c5e9cc497576dd799a93571ceb8b492a17c (patch)
tree294ad65d2abb2a668aa385862d4b74fdb7d2080c /src/match_call.c
parente3bdb08efa3ea0f2d55e77c5ab57528f6d604b6a (diff)
Decompile all of pokenav_unk_3.c
Diffstat (limited to 'src/match_call.c')
-rw-r--r--src/match_call.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/match_call.c b/src/match_call.c
index 35daacc3d..1f5324f02 100644
--- a/src/match_call.c
+++ b/src/match_call.c
@@ -8,6 +8,7 @@
#include "event_object_movement.h"
#include "field_player_avatar.h"
#include "main.h"
+#include "match_call.h"
#include "menu.h"
#include "new_game.h"
#include "overworld.h"
@@ -74,7 +75,6 @@ struct BattleFrontierStreakInfo
EWRAM_DATA struct MatchCallState gMatchCallState = {0};
EWRAM_DATA struct BattleFrontierStreakInfo gBattleFrontierStreakInfo = {0};
-bool32 SelectMatchCallMessage(int, u8 *);
static u32 GetCurrentTotalMinutes(struct Time *);
static u32 GetNumRegisteredNPCs(void);
static u32 GetActiveMatchCallTrainerId(u32);
@@ -1098,13 +1098,13 @@ bool32 TryStartMatchCall(void)
return FALSE;
}
-void StartMatchCallFromScript(void)
+void StartMatchCallFromScript(u8 *message)
{
gMatchCallState.triggeredFromScript = 1;
StartMatchCall();
}
-bool8 IsMatchCallTaskActive(void)
+bool32 IsMatchCallTaskActive(void)
{
return FuncIsActiveTask(ExecuteMatchCall);
}