summaryrefslogtreecommitdiff
path: root/src/driver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/driver.cpp')
-rw-r--r--src/driver.cpp4
1 files changed, 2 insertions, 2 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;