Skip to content

Commit

Permalink
Set up player death sound
Browse files Browse the repository at this point in the history
  • Loading branch information
elgambitero committed Mar 29, 2020
1 parent 786fec0 commit b64ab18
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions res/sound.res
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ WAV fim "sounds/fim.wav" 5
WAV metal2 "sounds/metal2.wav" 5
WAV smack "sounds/smack.wav" 5
WAV bell "sounds/bell.wav" 5
WAV moon_blast "sounds/moon_blast.wav" 5
Binary file added res/sounds/moon_blast.wav
Binary file not shown.
8 changes: 4 additions & 4 deletions src/entities.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ const Entity blue_player_ent = {
{7, 15},
PAL_SYS0,
&bp_spr,
0,
0
moon_blast,
sizeof(moon_blast)
};

const Entity green_player_ent = {
Expand All @@ -19,8 +19,8 @@ const Entity green_player_ent = {
{7, 15},
PAL_SYS1,
&bp_spr,
0,
0
moon_blast,
sizeof(moon_blast)
};
const Entity spinner_ent = {
NASTIE | STILL,
Expand Down

0 comments on commit b64ab18

Please sign in to comment.