about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/engine/client/snd.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/engine/client/snd.cpp b/src/engine/client/snd.cpp
index 402483ea..8cfa51d7 100644
--- a/src/engine/client/snd.cpp
+++ b/src/engine/client/snd.cpp
@@ -124,7 +124,6 @@ public:
 				if(channels[c].lerp >= 0)
 				{
 						dv = (channels[c].new_vol - channels[c].old_vol) * NUM_FRAMES_LERP_INV;
-						dbg_msg("mixer", "lerp %f", dv);
 				}
 
 				if(channels[c].data->channels == 1)
@@ -141,7 +140,7 @@ public:
 
 				channels[c].lerp -= to_fill;
 				if(channels[c].lerp < 0)
-					channels[c].lerp = 0;
+					channels[c].lerp = -1;
 
 				filled += to_fill;
 			}