mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
Stop overlapping voices
This commit is contained in:
parent
cb02f26732
commit
693cef4d20
@ -66,6 +66,8 @@ void Actor::sayLine(const char *msg) {
|
||||
const char *secondSlash = std::strchr(msg + 1, '/');
|
||||
if (secondSlash == NULL)
|
||||
return;
|
||||
if (talkSound_) // Only once line at a time, please :)
|
||||
shutUp();
|
||||
std::string msgId(msg + 1, secondSlash);
|
||||
talkSound_ = ResourceLoader::instance()->loadSound((msgId + ".wav").c_str());
|
||||
if (talkSound_ != NULL)
|
||||
|
Loading…
x
Reference in New Issue
Block a user