diff options
author | yenatch <yenatch@gmail.com> | 2017-06-15 22:20:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-15 22:20:16 -0400 |
commit | dda361afb7e2abafc15a498968580be6d1a83cfe (patch) | |
tree | 46e7d19c2aec0e65ab446c7916e5d8aeb38bfe48 /src/battle_setup.c | |
parent | c8213423cefc83310bc62ca8bcc17d7b6b42e442 (diff) | |
parent | 0a779312c8a5911620ef43eaefbecdbac9fa7b33 (diff) |
Merge pull request #326 from ProjectRevoTPP/master
move player_pc data to C file and restructure/label the file
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; } } |