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

9 lines
201 B
C
Raw Normal View History

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