summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-06-30 16:20:16 +0000
committerrubidium <rubidium@openttd.org>2009-06-30 16:20:16 +0000
commit65191b077d25ae390feb0c84eda4d517d3668bf0 (patch)
treea3e98f3d5c5c65ac0e6e8c932d0446f2ad77c024
parentb7c8026a3d180deb6a5b4faa7c68da755815a416 (diff)
downloadopenttd-65191b077d25ae390feb0c84eda4d517d3668bf0.tar.xz
(svn r16702) -Change: don't implicitly fall back to the null/dedicated (video) drivers, but show an error message that no driver could be found. You can still explicitly start the null drivers thought.
-rw-r--r--src/driver.cpp4
-rw-r--r--src/video/null_v.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/driver.cpp b/src/driver.cpp
index 1feffcc54..dd0da98b5 100644
--- a/src/driver.cpp
+++ b/src/driver.cpp
@@ -61,8 +61,8 @@ Driver *DriverFactoryBase::SelectDriver(const char *name, Driver::Type type)
if (GetDrivers().size() == 0) return NULL;
if (StrEmpty(name)) {
- /* Probe for this driver */
- for (int priority = 10; priority >= 0; priority--) {
+ /* Probe for this driver, but do not fall back to dedicated/null! */
+ for (int priority = 10; priority > 0; priority--) {
Drivers::iterator it = GetDrivers().begin();
for (; it != GetDrivers().end(); ++it) {
DriverFactoryBase *d = (*it).second;
diff --git a/src/video/null_v.h b/src/video/null_v.h
index c45a5a46c..80d9d58d9 100644
--- a/src/video/null_v.h
+++ b/src/video/null_v.h
@@ -27,7 +27,7 @@ public:
class FVideoDriver_Null: public VideoDriverFactory<FVideoDriver_Null> {
public:
- static const int priority = 1;
+ static const int priority = 0;
/* virtual */ const char *GetName() { return "null"; }
/* virtual */ const char *GetDescription() { return "Null Video Driver"; }
/* virtual */ Driver *CreateInstance() { return new VideoDriver_Null(); }