shithub: choc

Download patch

ref: f596cfcd76c8c03c41c0691561c9b3c9c4419393
parent: b79f27cef85cc975b45ada246ace30b648466483
author: Simon Howard <[email protected]>
date: Mon Apr 4 14:40:28 EDT 2011

Change setup tool default sampling rate to 44100Hz to match the game
(thanks Alexandre Xavier).

Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 2319

--- a/NEWS
+++ b/NEWS
@@ -45,6 +45,8 @@
        works properly (thanks Alexandre Xavier).
      * MIDI playback that locked up when using an empty MUS / MIDI
        file (thanks Alexandre Xavier).
+     * Default sampling rate used by setup tool changed to 44100Hz, to
+       match the game default (thanks Alexandre Xavier).
 
     libtextscreen:
      * It is now possible to type a '+' in input boxes (thanks
--- a/setup/sound.c
+++ b/setup/sound.c
@@ -64,7 +64,7 @@
 int snd_musicdevice = SNDDEVICE_GENMIDI;
 int musicVolume = 8;
 
-int snd_samplerate = 22050;
+int snd_samplerate = 44100;
 int opl_io_port = 0x388;
 
 int use_libsamplerate = 0;