mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-23 08:22:58 +00:00
Default voice to sfx_ktalk
Someone just needs to put an actual sound for it in sounds.pk3
This commit is contained in:
parent
71e068a8b6
commit
e30ff926d8
2 changed files with 3 additions and 3 deletions
|
|
@ -1952,7 +1952,7 @@ bool CallFunc_DialogueSetCustomSpeaker(ACSVM::Thread *thread, const ACSVM::Word
|
|||
|
||||
ACSVM::String *voiceStr = nullptr;
|
||||
const char *voiceName = nullptr;
|
||||
sfxenum_t voiceID = sfx_None;
|
||||
sfxenum_t voiceID = sfx_ktalk;
|
||||
|
||||
(void)argC;
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ void Dialogue::SetSpeaker(void)
|
|||
portrait = nullptr;
|
||||
portraitColormap = nullptr;
|
||||
|
||||
voiceSfx = sfx_None;
|
||||
voiceSfx = sfx_ktalk;
|
||||
}
|
||||
|
||||
void Dialogue::SetSpeaker(std::string skinName, int portraitID)
|
||||
|
|
@ -98,7 +98,7 @@ void Dialogue::SetSpeaker(std::string name, patch_t *patch, UINT8 *colormap, sfx
|
|||
{
|
||||
portrait = nullptr;
|
||||
portraitColormap = nullptr;
|
||||
voiceSfx = sfx_None;
|
||||
voiceSfx = sfx_ktalk;
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue