Transporter sound

This commit is contained in:
stevenhowes
2021-09-01 22:13:41 +01:00
parent 135bdd40f5
commit 3c91dc303b
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -385,6 +385,7 @@ void game2_setup_audio()
sound_pcm_loadsample(PCMSAMPLE_DOOR,"sounds.door"); sound_pcm_loadsample(PCMSAMPLE_DOOR,"sounds.door");
sound_pcm_loadsample(PCMSAMPLE_ALERT,"sounds.alert"); sound_pcm_loadsample(PCMSAMPLE_ALERT,"sounds.alert");
sound_pcm_loadsample(PCMSAMPLE_TRACTOREND,"sounds.tracend"); sound_pcm_loadsample(PCMSAMPLE_TRACTOREND,"sounds.tracend");
sound_pcm_loadsample(PCMSAMPLE_TRANSPORTER,"sounds.transp");
} }
void game2_setup() void game2_setup()
+1
View File
@@ -57,6 +57,7 @@ enum pcmsample_e{
PCMSAMPLE_DOOR = 5, /*soundid*/ PCMSAMPLE_DOOR = 5, /*soundid*/
PCMSAMPLE_ALERT = 6, /*soundid*/ PCMSAMPLE_ALERT = 6, /*soundid*/
PCMSAMPLE_TRACTOREND = 7, /*soundid*/ PCMSAMPLE_TRACTOREND = 7, /*soundid*/
PCMSAMPLE_TRANSPORTER = 8, /*soundid*/
PCMSAMPLE_MAX PCMSAMPLE_MAX
}; };
File diff suppressed because one or more lines are too long