diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2019-11-12 15:38:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-12 15:38:42 -0500 |
commit | 4a6563b82d0d10169b7f361ee44412d65a99582e (patch) | |
tree | 46c0f4eff4b30b1ec2158888be0a4cd3c66c48da /include/field_door.h | |
parent | 68ac755bb91041868cde6d558b2af2123ddad0a0 (diff) | |
parent | f04e6737b2073446efa285cfa74a80ee23649afd (diff) |
Merge pull request #154 from PikalaxALT/dism_more_data
Field Door
Diffstat (limited to 'include/field_door.h')
-rw-r--r-- | include/field_door.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/field_door.h b/include/field_door.h index 0059cbe1a..777afffce 100644 --- a/include/field_door.h +++ b/include/field_door.h @@ -3,11 +3,11 @@ #include "global.h" -void FieldSetDoorOpened(u32, u32); -void FieldSetDoorClosed(u32, u32); -s8 FieldAnimateDoorClose(u32, u32); -s8 FieldAnimateDoorOpen(u32, u32); +void FieldSetDoorOpened(int x, int y); +void FieldSetDoorClosed(int x, int y); +s8 FieldAnimateDoorClose(int x, int y); +s8 FieldAnimateDoorOpen(int x, int y); bool8 FieldIsDoorAnimationRunning(void); -u32 GetDoorSoundEffect(u32 x, u32 y); +u16 GetDoorSoundEffect(int x, int y); #endif |