diff options
author | peter1138 <peter1138@openttd.org> | 2007-07-07 20:31:23 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2007-07-07 20:31:23 +0000 |
commit | 8b81cdd2a602d63b6b7f595383cedecf54046650 (patch) | |
tree | 0bd6f98a4074b190b9e2d63d8410f76306430377 /src/video/cocoa_v.h | |
parent | 0543657b75fe3191d4232c2ebbac80f8b860617f (diff) | |
download | openttd-8b81cdd2a602d63b6b7f595383cedecf54046650.tar.xz |
(svn r10471) -Codechange: implement driver probing priority so that 'preferred' drivers are loaded first
Diffstat (limited to 'src/video/cocoa_v.h')
-rw-r--r-- | src/video/cocoa_v.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video/cocoa_v.h b/src/video/cocoa_v.h index a6fd41871..bb980ad91 100644 --- a/src/video/cocoa_v.h +++ b/src/video/cocoa_v.h @@ -7,8 +7,6 @@ class VideoDriver_Cocoa: public VideoDriver { public: - /* virtual */ bool CanProbe() { return true; } - /* virtual */ const char *Start(const char * const *param); /* virtual */ void Stop(); @@ -24,6 +22,7 @@ public: class FVideoDriver_Cocoa: public VideoDriverFactory<FVideoDriver_Cocoa> { public: + static const int priority = 10; /* virtual */ const char *GetName() { return "cocoa"; } /* virtual */ const char *GetDescription() { return "Cocoa Video Driver"; } /* virtual */ Driver *CreateInstance() { return new VideoDriver_Cocoa(); } |