changeset 3807:da371472162f SDL-ryan-multiple-audio-device

DART allegedly does up to quad output.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 04 Oct 2006 22:51:30 +0000
parents 1485d42cf1a0
children e630f5fe29d8
files src/audio/dart/SDL_dart.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/audio/dart/SDL_dart.c	Wed Oct 04 22:42:26 2006 +0000
+++ b/src/audio/dart/SDL_dart.c	Wed Oct 04 22:51:30 2006 +0000
@@ -107,8 +107,8 @@
     iDeviceOrd = AmpOpenParms.usDeviceID;
 
     // Determine the audio parameters from the AudioSpec
-    if (spec->channels > 2)
-        spec->channels = 2;     // !!! FIXME: more than stereo support in OS/2?
+    if (spec->channels > 4)
+        spec->channels = 4;
 
     while ((!valid_datatype) && (test_format)) {
         spec->format = test_format;