Skip to content

Commit

Permalink
apply Jenkins fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Feacur committed Nov 28, 2024
1 parent 106cb10 commit 50acfc2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/overlays/actors/ovl_player_actor/z_player.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ typedef struct GetItemEntry {
#define CHEST_ANIM_SHORT 0
#define CHEST_ANIM_LONG 1

#define GET_ITEM_NONE { ITEM_NONE, 0, 0, 0, OBJECT_INVALID }
#define GET_ITEM_NONE \
{ ITEM_NONE, 0, 0, 0, OBJECT_INVALID }

typedef struct ExplosiveInfo {
/* 0x00 */ u8 itemId;
Expand Down Expand Up @@ -80,10 +81,10 @@ typedef enum AnimSfxType {

#define ANIMSFX_SHIFT_TYPE(type) ((type) << 11)

#define ANIMSFX_DATA(type, frame) ((ANIMSFX_SHIFT_TYPE(type) | ((frame) & 0x7FF)))
#define ANIMSFX_DATA(type, frame) ((ANIMSFX_SHIFT_TYPE(type) | ((frame)&0x7FF)))

#define ANIMSFX_GET_TYPE(data) ((data) & 0x7800)
#define ANIMSFX_GET_FRAME(data) ((data) & 0x7FF)
#define ANIMSFX_GET_TYPE(data) ((data)&0x7800)
#define ANIMSFX_GET_FRAME(data) ((data)&0x7FF)

typedef struct AnimSfxEntry {
/* 0x00 */ u16 sfxId;
Expand Down

0 comments on commit 50acfc2

Please sign in to comment.