shithub: choc

Download patch

ref: e2c0f46e4f64f7970005a66056be85a6929b5227
parent: 8d9ee8259d629ef11a33e6710091f4f9bb15a1a2
author: Simon Howard <fraggle@gmail.com>
date: Sun Oct 16 12:16:03 EDT 2005

Set the default number of channels to a more sensible 8

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

--- a/src/s_sound.c
+++ b/src/s_sound.c
@@ -1,7 +1,7 @@
 // Emacs style mode select   -*- C++ -*- 
 //-----------------------------------------------------------------------------
 //
-// $Id: s_sound.c 169 2005-10-08 18:34:12Z fraggle $
+// $Id: s_sound.c 203 2005-10-16 16:16:03Z fraggle $
 //
 // Copyright(C) 1993-1996 Id Software, Inc.
 // Copyright(C) 2005 Simon Howard
@@ -22,6 +22,9 @@
 // 02111-1307, USA.
 //
 // $Log$
+// Revision 1.9  2005/10/16 16:16:03  fraggle
+// Set the default number of channels to a more sensible 8
+//
 // Revision 1.8  2005/10/08 18:34:12  fraggle
 // Print startup message to stdout, not stderr
 //
@@ -58,7 +61,7 @@
 
 
 static const char
-rcsid[] = "$Id: s_sound.c 169 2005-10-08 18:34:12Z fraggle $";
+rcsid[] = "$Id: s_sound.c 203 2005-10-16 16:16:03Z fraggle $";
 
 
 
@@ -163,7 +166,7 @@
 //  by the defaults code in M_misc:
 // number of channels available
 
-int			numChannels = 3;
+int			numChannels = 8;
 
 static int		nextcleanup;