From 7054e7ab7b86e24493bc1a5d97b112cda13bb163 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Wed, 18 Jun 2003 08:04:05 +0000 Subject: [PATCH] Fix the samplerate constant. Stupid mistake. I wondered why everything played too fast. --- stepmania/src/arch/Sound/RageSoundDriver_SDL.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/arch/Sound/RageSoundDriver_SDL.cpp b/stepmania/src/arch/Sound/RageSoundDriver_SDL.cpp index 7a30a4bd21..7d2a336f33 100644 --- a/stepmania/src/arch/Sound/RageSoundDriver_SDL.cpp +++ b/stepmania/src/arch/Sound/RageSoundDriver_SDL.cpp @@ -15,7 +15,7 @@ #include "RageUtil.h" const unsigned channels = 2; -const unsigned samplerate = 441000; +const unsigned samplerate = 44100; const unsigned samplesize = channels*2; const unsigned buffersize_frames = 1024; /* in samples */ const unsigned buffersize = buffersize_frames * samplesize;