changeset 13083:1adece7fc42c draft

(svn r17583) -Change: make SDL's video driver more likely to be loaded than Allegro's video driver; SDL seems to perform better.
author rubidium <rubidium@openttd.org>
date Sun, 20 Sep 2009 10:19:13 +0000
parents 9b6f556571eb
children bf8ef2376932
files src/video/allegro_v.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/video/allegro_v.h
+++ b/src/video/allegro_v.h
@@ -32,7 +32,7 @@
 
 class FVideoDriver_Allegro: public VideoDriverFactory<FVideoDriver_Allegro> {
 public:
-	static const int priority = 5;
+	static const int priority = 4;
 	/* virtual */ const char *GetName() { return "allegro"; }
 	/* virtual */ const char *GetDescription() { return "Allegro Video Driver"; }
 	/* virtual */ Driver *CreateInstance() { return new VideoDriver_Allegro(); }