aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray2003-08-24 02:43:44 +0000
committerJonathan Gray2003-08-24 02:43:44 +0000
commit5d1863070b880d72bc3997ed6a77e6ed24f9c1bb (patch)
treecc8db32d35eb86ad74e516d7d0ef0fdcec91d8d2
parent14e3dd96e0b0f7617f307c5abe93dd6f74ad0b3e (diff)
downloadscummvm-rg350-5d1863070b880d72bc3997ed6a77e6ed24f9c1bb.tar.gz
scummvm-rg350-5d1863070b880d72bc3997ed6a77e6ed24f9c1bb.tar.bz2
scummvm-rg350-5d1863070b880d72bc3997ed6a77e6ed24f9c1bb.zip
return read error in PlayCompSpeech for now so we get subtitles
svn-id: r9841
-rw-r--r--sword2/driver/d_sound.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/sword2/driver/d_sound.cpp b/sword2/driver/d_sound.cpp
index d6bb18ce6c..6ea5fbed48 100644
--- a/sword2/driver/d_sound.cpp
+++ b/sword2/driver/d_sound.cpp
@@ -1130,7 +1130,8 @@ int32 Sword2Sound::PlayCompSpeech(const char *filename, uint32 speechid, uint8 v
DipMusic();
*/
- return(RD_OK);
+ // return read error for now so we get subtitles
+ return (RDERR_READERROR);
}