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

9 lines
172 B
C
Raw Permalink Normal View History

2019-09-01 19:50:50 +00:00
// sound_sand.inc.c
void bhv_sand_sound_loop(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;
2020-03-02 03:42:52 +00:00
cur_obj_play_sound_1(SOUND_ENV_MOVINGSAND);
2019-09-01 19:50:50 +00:00
}