Equivalent: scheduling
| 5637 | |
| 5638 | // Equivalent: scheduling |
| 5639 | void zEntPlayer_SNDPlay(_tagePlayerSnd player_snd, F32 delay) |
| 5640 | { |
| 5641 | if (globals.cmgr == NULL && !sPlayerIgnoreSound) |
| 5642 | { |
| 5643 | if (sPlayerSnd[gCurrentPlayer][player_snd]) |
| 5644 | { |
| 5645 | sPlayerSndID[gCurrentPlayer][player_snd] = |
| 5646 | xSndPlay(sPlayerSnd[gCurrentPlayer][player_snd], sPlayerSndFxVolume[player_snd], |
| 5647 | 0.0f, 0x80, 0, 0, SND_CAT_GAME, delay); |
| 5648 | if (sPlayerRumbleTime[player_snd] > 0.0f) |
| 5649 | { |
| 5650 | xPadAddRumble(globals.currentActivePad, sPlayerRumbleType[player_snd], |
| 5651 | sPlayerRumbleTime[player_snd], 1, 0); |
| 5652 | } |
| 5653 | } |
| 5654 | } |
| 5655 | } |
| 5656 | |
| 5657 | void zEntPlayer_SNDPlayStream(_tagePlayerStreamSnd player_snd) |
| 5658 | { |
no test coverage detected