From d0d4cd7b8a558e56219aacf56ff334ee73626c63 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 17 Oct 2009 15:15:00 +0000 Subject: (svn r17788) -Fix [FS#3268] (r16702): don't fail hard when no soundcard could be detected; just fall back on the null-driver --- src/sound/null_s.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sound/null_s.h') diff --git a/src/sound/null_s.h b/src/sound/null_s.h index 050f39fc9..34f12e70e 100644 --- a/src/sound/null_s.h +++ b/src/sound/null_s.h @@ -24,7 +24,7 @@ public: class FSoundDriver_Null: public SoundDriverFactory { public: - static const int priority = 0; + static const int priority = 1; /* virtual */ const char *GetName() { return "null"; } /* virtual */ const char *GetDescription() { return "Null Sound Driver"; } /* virtual */ Driver *CreateInstance() { return new SoundDriver_Null(); } -- cgit v1.2.3-54-g00ecf