This sound doesn't exist yet, but I'm defining it anyway

This commit is contained in:
TehRealSalt 2018-11-26 03:19:31 -05:00
parent 2a573c2072
commit 62b9754407
3 changed files with 3 additions and 1 deletions

View file

@ -1012,7 +1012,7 @@ static void K_KartItemRoulette(player_t *player, ticcmd_t *cmd)
player->kartstuff[k_roulettetype] = 0; // This too
if (P_IsLocalPlayer(player))
S_StartSound(NULL, (mashed ? sfx_itrolm : sfx_itrolf));
S_StartSound(NULL, ((player->kartstuff[k_roulettetype] == 1) ? sfx_itrolk : (mashed ? sfx_itrolm : sfx_itrolf)));
}
//}

View file

@ -793,6 +793,7 @@ sfxinfo_t S_sfx[NUMSFX] =
{"itrol8", true, 96, 0, -1, NULL, 0, -1, -1, LUMPERROR},
{"itrolf", true, 96, 0, -1, NULL, 0, -1, -1, LUMPERROR}, // Roulette end
{"itrolm", true, 96, 0, -1, NULL, 0, -1, -1, LUMPERROR}, // Roulette end (mashed)
{"itrolk", true, 96, 0, -1, NULL, 0, -1, -1, LUMPERROR}, // Roulette end (karma enhanced)
{"itrole", true, 96, 0, -1, NULL, 0, -1, -1, LUMPERROR}, // Roulette end (Eggman)
{"vroom", false, 64, 0, -1, NULL, 0, -1, -1, LUMPERROR}, // Kart Krew opening vroom
{"chaooo", false, 64, 0, -1, NULL, 0, -1, -1, LUMPERROR}, // Chao audience cheer

View file

@ -868,6 +868,7 @@ typedef enum
sfx_itrol8,
sfx_itrolf,
sfx_itrolm,
sfx_itrolk,
sfx_itrole,
sfx_vroom,
sfx_chaooo,