diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-06-15 03:34:11 -0400 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-06-15 03:34:11 -0400 |
commit | 8435b8835a9b5c5348b2849e943e36ffdd8c76b3 (patch) | |
tree | 57eb9977f42413654a57774bcc6262d63654b78a /src/battle_setup.c | |
parent | f22e583db60f3d0c33a3d02509c51c2a861e6abd (diff) |
move player_pc data to C file and do a lot of labeling
Diffstat (limited to 'src/battle_setup.c')
-rw-r--r-- | src/battle_setup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/battle_setup.c b/src/battle_setup.c index a70157a43..cb99bf5f5 100644 --- a/src/battle_setup.c +++ b/src/battle_setup.c @@ -31,7 +31,7 @@ extern u16 gScriptResult; -extern void (*gUnknown_0300485C)(void); +extern void (*gFieldCallback)(void); extern struct Pokemon gEnemyParty[]; extern struct Pokemon gPlayerParty[]; @@ -580,7 +580,7 @@ void HandleWildBattleEnd(void) else { SetMainCallback2(c2_exit_to_overworld_2_switch); - gUnknown_0300485C = sub_8080E44; + gFieldCallback = sub_8080E44; } } |