diff --git a/sword2/driver/d_sound.cpp b/sword2/driver/d_sound.cpp index ed820fbaffc..cc88f6aac08 100644 --- a/sword2/driver/d_sound.cpp +++ b/sword2/driver/d_sound.cpp @@ -225,7 +225,7 @@ // // -------------------------------------------------------------------------- // -// int32 StopSpeech(void) +// int32 StopSpeechBS2(void) // // Stops the speech from playing. // @@ -1131,10 +1131,10 @@ int32 PlayCompSpeech(const char *filename, uint32 speechid, uint8 vol, int8 pan) } -int32 StopSpeech(void) +int32 StopSpeechBS2(void) { - warning("stub StopSpeech"); + warning("stub StopSpeechBS2"); /* int32 status; diff --git a/sword2/driver/driver96.h b/sword2/driver/driver96.h index f3fe9db324b..e66e007cbaa 100644 --- a/sword2/driver/driver96.h +++ b/sword2/driver/driver96.h @@ -824,7 +824,7 @@ // // -------------------------------------------------------------------------- // -// int32 StopSpeech(void) +// int32 StopSpeechBS2(void) // // Stops the speech from playing. // @@ -1566,7 +1566,7 @@ extern int32 PlayCompSpeech(const char *filename, uint32 speechid, uint8 vol, in extern int32 PreFetchCompSpeech(const char *filename, uint32 speechid, uint8 *waveMem); extern int32 GetCompSpeechSize(const char *filename, uint32 speechid); extern int32 AmISpeaking(); -extern int32 StopSpeech(void); +extern int32 StopSpeechBS2(void); extern int32 GetSpeechStatus(void); extern int32 PauseSpeech(void); extern int32 UnpauseSpeech(void); diff --git a/sword2/speech.cpp b/sword2/speech.cpp index 7558571a6dc..abaf5609556 100644 --- a/sword2/speech.cpp +++ b/sword2/speech.cpp @@ -1704,7 +1704,7 @@ int32 FN_i_speak(int32 *params) //Tony18Oct96 (revamped by James01july97) if (speechRunning) // if speech sample playing { - StopSpeech(); // halt the sample prematurely + StopSpeechBS2(); // halt the sample prematurely } } } diff --git a/sword2/startup.cpp b/sword2/startup.cpp index 7ecede66357..5cb0d9bcf3c 100644 --- a/sword2/startup.cpp +++ b/sword2/startup.cpp @@ -291,7 +291,7 @@ uint32 Con_start(uint8 *input) //Tony15Oct96 //--------------------------------------------- UnpauseSpeech(); - StopSpeech(); // halt the sample prematurely + StopSpeechBS2(); // halt the sample prematurely //-------------------------------------------------------------- // clean out all resources & flags, ready for a total restart (James24mar97)