Actualizado a la última versión de jail_audio

This commit is contained in:
2022-12-05 08:05:15 +01:00
parent 1144fc3626
commit ded9b40922
8 changed files with 148 additions and 45 deletions

View File

@@ -1806,7 +1806,7 @@ void Game::updateDeath()
{
// Hace sonar aleatoriamente uno de los 4 sonidos de burbujas
const Uint8 index = rand() % 4;
const JA_Sound sound[4] = {bubble1Sound, bubble2Sound, bubble3Sound, bubble4Sound};
const JA_Sound_t* sound[4] = {bubble1Sound, bubble2Sound, bubble3Sound, bubble4Sound};
JA_PlaySound(sound[index], 0);
}
}