diff options
-rw-r--r-- | sword2/anims.cpp | 5 | ||||
-rw-r--r-- | sword2/sound.cpp | 5 | ||||
-rw-r--r-- | sword2/speech.cpp | 5 |
3 files changed, 5 insertions, 10 deletions
diff --git a/sword2/anims.cpp b/sword2/anims.cpp index eefd329104..764113c1f8 100644 --- a/sword2/anims.cpp +++ b/sword2/anims.cpp @@ -580,7 +580,7 @@ void CreateSequenceSpeech(_movieTextObject *sequenceText[]) // (James23may97) // first checking if we have speech1.clu or speech2.clu in current directory (for translators to test) if (g_sword2->_gameId == GID_SWORD2_DEMO) { - strcpy(speechFile,"SPEECH.CLU"); + strcpy(speechFile,"speech.clu"); } else { #ifdef _SWORD2_DEBUG @@ -595,8 +595,7 @@ void CreateSequenceSpeech(_movieTextObject *sequenceText[]) // (James23may97) else #endif // _SWORD2_DEBUG { - strcpy(speechFile,res_man.GetCdPath()); - strcat(speechFile,"CLUSTERS/SPEECH.CLU"); + strcpy(speechFile, "speech.clu"); } } //------------------------------ diff --git a/sword2/sound.cpp b/sword2/sound.cpp index 5c904df39c..e16c51b8ce 100644 --- a/sword2/sound.cpp +++ b/sword2/sound.cpp @@ -410,10 +410,7 @@ int32 FN_play_music(int32 *params) // updated by James on 10apr97 // add the appropriate file extension & play it - if (g_sword2->_gameId == GID_SWORD2_DEMO) - sprintf(filename,"MUSIC.CLU"); - else - sprintf(filename,"%sCLUSTERS/MUSIC.CLU", res_man.GetCdPath()); + sprintf(filename,"Music.clu"); rv = g_sword2->_sound->StreamCompMusic(filename, g_sword2->getGameDataPath(), params[0], loopFlag); diff --git a/sword2/speech.cpp b/sword2/speech.cpp index cbf13e4b12..d2f9258e2d 100644 --- a/sword2/speech.cpp +++ b/sword2/speech.cpp @@ -1566,7 +1566,7 @@ int32 FN_i_speak(int32 *params) //Tony18Oct96 (revamped by James01july97) // first checking if we have speech1.clu or speech2.clu in current directory (for translators to test) if (g_sword2->_gameId == GID_SWORD2_DEMO) - strcpy(speechFile,"SPEECH.CLU"); + strcpy(speechFile,"speech.clu"); else { #ifdef _SWORD2_DEBUG @@ -1577,8 +1577,7 @@ int32 FN_i_speak(int32 *params) //Tony18Oct96 (revamped by James01july97) } else #endif // _SWORD2_DEBUG { - strcpy(speechFile,res_man.GetCdPath()); - strcat(speechFile,"CLUSTERS/SPEECH.CLU"); + strcpy(speechFile,"speech.clu"); } } //------------------------------ |