summaryrefslogtreecommitdiff
path: root/src/video/allegro_v.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2013-11-25 14:26:46 +0000
committerrubidium <rubidium@openttd.org>2013-11-25 14:26:46 +0000
commit6996b441d9d104bc6d7041b64362f4426425f600 (patch)
tree074989fd03a7f672e137423688c40d1efc466a95 /src/video/allegro_v.h
parenta399fc667ce506abcdcfd853d1ad58f0bb8dbb4f (diff)
downloadopenttd-6996b441d9d104bc6d7041b64362f4426425f600.tar.xz
(svn r26107) -Codechange/cleanup: remove some coding bloat and simplify the driver factory instatiations
Diffstat (limited to 'src/video/allegro_v.h')
-rw-r--r--src/video/allegro_v.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/video/allegro_v.h b/src/video/allegro_v.h
index da95269ce..d455bb515 100644
--- a/src/video/allegro_v.h
+++ b/src/video/allegro_v.h
@@ -37,12 +37,10 @@ public:
};
/** Factory for the allegro video driver. */
-class FVideoDriver_Allegro: public VideoDriverFactory<FVideoDriver_Allegro> {
+class FVideoDriver_Allegro : public DriverFactoryBase {
public:
- 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(); }
+ FVideoDriver_Allegro() : DriverFactoryBase(Driver::DT_VIDEO, 4, "allegro", "Allegro Video Driver") {}
+ /* virtual */ Driver *CreateInstance() const { return new VideoDriver_Allegro(); }
};
#endif /* VIDEO_ALLEGRO_H */