From 724f3af240a9111cef2d820fa0bcc07d16dd40e5 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 27 Jan 2003 23:09:40 +0000 Subject: [PATCH] minor correction --- stepmania/src/arch/Sound/DSoundHelpers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/arch/Sound/DSoundHelpers.cpp b/stepmania/src/arch/Sound/DSoundHelpers.cpp index dbebe38455..e59218eaa1 100644 --- a/stepmania/src/arch/Sound/DSoundHelpers.cpp +++ b/stepmania/src/arch/Sound/DSoundHelpers.cpp @@ -117,7 +117,7 @@ void DSoundBuf::SetVolume(float vol) float vl2 = log10f(vol) / log10f(2); /* vol log 2 */ - /* Volume is in percent; SetVolume wants attenuation in thousands of a + /* Volume is a multiplier; SetVolume wants attenuation in thousands of a * decibel. */ if(vol != 1) buf->SetVolume(max(int(1000 * vl2), DSBVOLUME_MIN));