ref: 202162a5064793ae2e10a57bac02ea67c97913c9
parent: 7dde64ee8491049fd5ab552c19c878f8e5828dbe
author: LTCHIPS <ltchips994@gmail.com>
date: Wed Jun 6 21:38:32 EDT 2018
fixed missing FX_StopSound call in SD_StopSound
--- a/rott/rt_sound.c
+++ b/rott/rt_sound.c
@@ -627,10 +627,14 @@
void SD_StopSound ( int handle )
{
- int status;
-
+ //int status;
+
if (SD_Started==false)
return;
+
+ FX_StopSound(handle);
+
+
}
//***************************************************************************