diff options
Diffstat (limited to 'sky/logic.cpp')
-rw-r--r-- | sky/logic.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sky/logic.cpp b/sky/logic.cpp index 691f3d9ed1..9caf1ba0a1 100644 --- a/sky/logic.cpp +++ b/sky/logic.cpp @@ -2438,11 +2438,10 @@ void SkyLogic::stdSpeak(Compact *target, uint32 textNum, uint32 animNum, uint32 // if sky is configured to speech-only return now - except if we're running another // language than english - if (speechUsed && (!(SkyState::_systemVars.systemFlags & SF_ALLOW_TEXT)) && - (SkyState::_systemVars.language == EN_USA)) { - target->extCompact->spTime = 10; - target->logic = L_TALK; - return ; + if (speechUsed && (!(SkyState::_systemVars.systemFlags & SF_ALLOW_TEXT))) { + target->extCompact->spTime = 10; + target->logic = L_TALK; + return ; } //now form the text sprite |