src/sound/cocoa_s.h
branchnoai
changeset 9641 855e32c08c9b
parent 9631 8a2d1c2ceb88
child 10429 1b99254f9607
--- 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<FSoundDriver_Cocoa> {
 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(); }