Skip to content

Commit

Permalink
Update macos runner (#437)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbatalov authored Jan 12, 2025
1 parent 9fb917c commit 0a9aaab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
ios:
name: iOS

runs-on: macos-12
runs-on: macos-13

steps:
- name: Clone
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
macos:
name: macOS

runs-on: macos-11
runs-on: macos-13

steps:
- name: Clone
Expand Down
2 changes: 1 addition & 1 deletion src/animation.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ typedef enum AnimationType {
LAST_SF_DEATH_ANIM = ANIM_FALL_FRONT_BLOOD_SF,
} AnimationType;

#define FID_ANIM_TYPE(value) ((value)&0xFF0000) >> 16
#define FID_ANIM_TYPE(value) ((value) & 0xFF0000) >> 16

// Signature of animation callback accepting 2 parameters.
typedef int(AnimationCallback)(void* a1, void* a2);
Expand Down
2 changes: 1 addition & 1 deletion src/obj_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ enum {
OBJ_TYPE_COUNT,
};

#define FID_TYPE(value) ((value)&0xF000000) >> 24
#define FID_TYPE(value) ((value) & 0xF000000) >> 24
#define PID_TYPE(value) (value) >> 24
#define SID_TYPE(value) (value) >> 24

Expand Down

0 comments on commit 0a9aaab

Please sign in to comment.