aboutsummaryrefslogtreecommitdiff
path: root/sword1
diff options
context:
space:
mode:
Diffstat (limited to 'sword1')
-rw-r--r--sword1/sound.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/sword1/sound.cpp b/sword1/sound.cpp
index 09e2d1d81a..c42c6dee22 100644
--- a/sword1/sound.cpp
+++ b/sword1/sound.cpp
@@ -202,6 +202,8 @@ void SwordSound::stopSpeech(void) {
void SwordSound::initCowSystem(void) {
_cowFile.open("SPEECH.CLU");
+ if (_cowFile.isOpen() == false)
+ _cowFile.open("speech/SPEECH.CLU");
if (_cowFile.isOpen()) {
_cowHeaderSize = _cowFile.readUint32LE();
_cowHeader = (uint32*)malloc(_cowHeaderSize);