Fix for some problems introduced (like wrong text display) with last commit.

svn-id: r30654
This commit is contained in:
Johannes Schickel 2008-01-27 15:53:09 +00:00
parent fec6e22cc9
commit dd3a8672be
5 changed files with 7 additions and 4 deletions

View file

@ -760,7 +760,7 @@ int KyraEngine_v2::o2_zanthiaChat(ScriptState *script) {
int KyraEngine_v2::o2_isVoiceEnabled(ScriptState *script) {
debugC(3, kDebugLevelScriptFuncs, "o2_isVoiceEnabled(%p) ()", (const void *)script);
return 1/*voiceEnabled()*/;
return speechEnabled() ? 1 : 0;
}
int KyraEngine_v2::o2_isVoicePlaying(ScriptState *script) {