sanity cutoff for splash sound
authornemo
Mon, 20 Mar 2017 08:58:30 -0400
changeset 12150 bbefbd1a3b0a
parent 12149 44b06731278b
child 12151 0b6487201129
sanity cutoff for splash sound
hedgewars/uGearsUtils.pas
--- a/hedgewars/uGearsUtils.pas	Mon Feb 06 18:15:29 2017 +0300
+++ b/hedgewars/uGearsUtils.pas	Mon Mar 20 08:58:30 2017 -0400
@@ -477,7 +477,7 @@
         PlaySound(sndSplash)
     else if hwTmp > _0_5 then
         PlaySound(sndSkip)
-    else
+    else if hwTmp > _0_0002 then  // arbitrary sanity cutoff.  mostly for airmines
         PlaySound(sndDroplet2);
     end;