diff options
author | rubidium <rubidium@openttd.org> | 2009-09-20 10:19:13 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-09-20 10:19:13 +0000 |
commit | 9d0b10ccda42388fcf13d5a8e423d82791540c99 (patch) | |
tree | bb78225cf4877d6752c6642685b767efc013e1a1 /src/video | |
parent | 17a52eb8527181394fb22b0f064844e743b18279 (diff) | |
download | openttd-9d0b10ccda42388fcf13d5a8e423d82791540c99.tar.xz |
(svn r17583) -Change: make SDL's video driver more likely to be loaded than Allegro's video driver; SDL seems to perform better.
Diffstat (limited to 'src/video')
-rw-r--r-- | src/video/allegro_v.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video/allegro_v.h b/src/video/allegro_v.h index 2cac11dd8..a48f17dda 100644 --- a/src/video/allegro_v.h +++ b/src/video/allegro_v.h @@ -32,7 +32,7 @@ public: 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(); } |