| 664 | } |
| 665 | |
| 666 | void GEC_villSound() |
| 667 | { |
| 668 | static U32 aid_sndList[6] = {}; |
| 669 | static signed char init; |
| 670 | |
| 671 | if (!init) |
| 672 | { |
| 673 | aid_sndList[0] = xStrHash("SBG01066_c"); |
| 674 | aid_sndList[1] = xStrHash("SBG01066_a"); |
| 675 | aid_sndList[2] = xStrHash("SBG01067"); |
| 676 | aid_sndList[3] = xStrHash("SBG01068_a"); |
| 677 | aid_sndList[4] = xStrHash("SBG01068_d"); |
| 678 | aid_sndList[5] = xStrHash("SBG01069"); |
| 679 | |
| 680 | // scheduling memes preventing match |
| 681 | init = true; |
| 682 | } |
| 683 | |
| 684 | U32 snd = xUtil_choose(aid_sndList, 6, NULL); |
| 685 | |
| 686 | if (snd) |
| 687 | { |
| 688 | xSndPlay(snd, 1.0f, 0.0f, 0x80, 0, 0, SND_CAT_GAME, 0.0f); |
| 689 | } |
| 690 | } |
| 691 | |
| 692 | void GEC_cb_BigPlank() |
| 693 | { |
no test coverage detected