diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-05-10 18:45:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-10 18:45:35 -0500 |
commit | 7c551ef37376c3cc6193ec556d43d1c2d312e2d3 (patch) | |
tree | 2650fcf5b16620bb315581e9cf790f2cf716956b /include/overworld.h | |
parent | 7defc27b994069715e5749245700d20dd740e4f0 (diff) | |
parent | 2b6d2dfadd00d88c5193c63da4da46e73f791549 (diff) |
Merge pull request #250 from Diegoisawesome/master
Port/decompile field_effect
Diffstat (limited to 'include/overworld.h')
-rw-r--r-- | include/overworld.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/overworld.h b/include/overworld.h index 59d4d6a30..15d7bb362 100644 --- a/include/overworld.h +++ b/include/overworld.h @@ -23,6 +23,8 @@ extern u16 *gBGTilemapBuffers1; extern u16 *gBGTilemapBuffers2; extern u16 *gBGTilemapBuffers3; +extern void (*gFieldCallback)(void); + // Exported ROM declarations extern const struct UCoords32 gUnknown_08339D64[]; @@ -101,7 +103,7 @@ u8 GetMapTypeByGroupAndId(s8 mapGroup, s8 mapNum); u8 GetMapTypeByWarpData(struct WarpData *warp); u8 Overworld_GetMapTypeOfSaveblockLocation(void); u8 get_map_light_from_warp0(void); -bool8 is_light_level_1_2_3_5_or_6(u8 mapType); +bool8 is_map_type_1_2_3_5_or_6(u8 mapType); bool8 Overworld_MapTypeAllowsTeleportAndFly(u8 mapType); bool8 Overworld_MapTypeIsIndoors(u8 mapType); u8 sav1_saved_warp2_map_get_name(void); |