From 1ea055bf3b306edc66ac75feacd4aab71bfc60cd Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 14 Feb 2003 18:52:02 +0000 Subject: [PATCH] use null sound driver by default if none others are defined --- stepmania/src/arch/arch.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stepmania/src/arch/arch.h b/stepmania/src/arch/arch.h index 54b01f3368..e42c9556ea 100644 --- a/stepmania/src/arch/arch.h +++ b/stepmania/src/arch/arch.h @@ -15,6 +15,8 @@ ArchHooks *MakeArchHooks(); /* Define the default list of sound drivers for each arch. */ #if defined(WIN32) #define DEFAULT_SOUND_DRIVER_LIST "DirectSound,DirectSound-sw,WaveOut" +#else +#define DEFAULT_SOUND_DRIVER_LIST "Null" #endif #endif