Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
cxong committed Oct 8, 2024
1 parent b224a62 commit b48ab7c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions data/.wolf3d/N3Ddata.cdogscpn/character_classes.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
"Body": "camel",
"Sounds": "camel",
"Footsteps": "camel",
"BloodColor": "00000000",
"HasHair": false,
"HasFacehair": false,
"HasHat": false,
Expand Down
2 changes: 1 addition & 1 deletion src/cdogs/actor_pickup.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void PickupPickup(TActor *a, Pickup *p, const bool pickupAll)
}
bool PickupApplyEffect(
TActor *a, const Pickup *p, const PickupEffect *pe, const bool force,
char **sound)
const char **sound)
{
bool canPickup = false;
GameEvent e;
Expand Down
2 changes: 1 addition & 1 deletion src/cdogs/actor_pickup.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
void PickupPickup(TActor *a, Pickup *p, const bool pickupAll);
bool PickupApplyEffect(
TActor *a, const Pickup *p, const PickupEffect *pe, const bool force,
char **sound);
const char **sound);

0 comments on commit b48ab7c

Please sign in to comment.