summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2008-01-07 16:41:03 +0000
committerpeter1138 <peter1138@openttd.org>2008-01-07 16:41:03 +0000
commitba4ab96bcc797e1eb1ee119ad3ca2899293f8bc2 (patch)
tree648a1eab0222a8f8a6bf20bea457f6ee0273f313
parent9e875495bf32ccfdcf126ccd30c1ec425e65b05c (diff)
downloadopenttd-ba4ab96bcc797e1eb1ee119ad3ca2899293f8bc2.tar.xz
(svn r11780) -Codechange: When compiling a dedicated server build, select the dedicated video driver by default.
-rw-r--r--src/video/dedicated_v.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/video/dedicated_v.h b/src/video/dedicated_v.h
index 0ade00f92..434a3c041 100644
--- a/src/video/dedicated_v.h
+++ b/src/video/dedicated_v.h
@@ -22,7 +22,13 @@ public:
class FVideoDriver_Dedicated: public VideoDriverFactory<FVideoDriver_Dedicated> {
public:
+#ifdef DEDICATED
+ /* Automatically select this dedicated driver when making a dedicated
+ * server build. */
+ static const int priority = 10;
+#else
static const int priority = 0;
+#endif
/* virtual */ const char *GetName() { return "dedicated"; }
/* virtual */ const char *GetDescription() { return "Dedicated Video Driver"; }
/* virtual */ Driver *CreateInstance() { return new VideoDriver_Dedicated(); }