From a6e31b665445efcdce8b7d36d1cd57ba0d937f76 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Tue, 14 Oct 2003 15:25:21 +0000 Subject: [PATCH] use rate instead of freq Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1318 --- src/hardware/mixer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hardware/mixer.cpp b/src/hardware/mixer.cpp index aeca9cce..a0062554 100644 --- a/src/hardware/mixer.cpp +++ b/src/hardware/mixer.cpp @@ -307,7 +307,7 @@ void MIXER_Init(Section* sec) { MSG_Add("MIXER_CONFIGFILE_HELP","Nothing to setup yet!\n"); Section_prop * section=static_cast(sec); /* Read out config section */ - mixer.freq=section->Get_int("freq"); + mixer.freq=section->Get_int("rate"); mixer.nosound=section->Get_bool("nosound"); mixer.blocksize=section->Get_int("blocksize"); mixer.wave.dir=section->Get_string("wavedir");