diff -r 494df85104a3 -r 855e32c08c9b src/sound/cocoa_s.h --- a/src/sound/cocoa_s.h Thu Jul 12 15:52:17 2007 +0000 +++ b/src/sound/cocoa_s.h Fri Jul 13 09:18:50 2007 +0000 @@ -7,8 +7,6 @@ class SoundDriver_Cocoa: public SoundDriver { public: - /* virtual */ bool CanProbe() { return true; } - /* virtual */ const char *Start(const char * const *param); /* virtual */ void Stop(); @@ -16,6 +14,7 @@ class FSoundDriver_Cocoa: public SoundDriverFactory { public: + static const int priority = 10; /* virtual */ const char *GetName() { return "cocoa"; } /* virtual */ const char *GetDescription() { return "Cocoa Sound Driver"; } /* virtual */ Driver *CreateInstance() { return new SoundDriver_Cocoa(); }