sm64pc/src/game/behaviors/sound_ambient.inc.c

9 lines
201 B
C
Raw Permalink Normal View History

2019-09-01 19:50:50 +00:00
// sound_ambient.inc.c
void bhv_ambient_sounds_init(void) {
2020-01-03 15:38:57 +00:00
if (gCamera->mode == CAMERA_MODE_BEHIND_MARIO)
2019-09-01 19:50:50 +00:00
return;
2019-10-05 19:08:05 +00:00
play_sound(SOUND_AIR_CASTLE_OUTDOORS_AMBIENT, gDefaultSoundArgs);
2019-09-01 19:50:50 +00:00
}