summaryrefslogtreecommitdiff
path: root/src/sound/sdl_s.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound/sdl_s.h')
-rw-r--r--src/sound/sdl_s.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/sound/sdl_s.h b/src/sound/sdl_s.h
index 6733ee6a7..60cf11838 100644
--- a/src/sound/sdl_s.h
+++ b/src/sound/sdl_s.h
@@ -24,12 +24,10 @@ public:
};
/** Factory for the SDL sound driver. */
-class FSoundDriver_SDL: public SoundDriverFactory<FSoundDriver_SDL> {
+class FSoundDriver_SDL : public DriverFactoryBase {
public:
- static const int priority = 5;
- /* virtual */ const char *GetName() { return "sdl"; }
- /* virtual */ const char *GetDescription() { return "SDL Sound Driver"; }
- /* virtual */ Driver *CreateInstance() { return new SoundDriver_SDL(); }
+ FSoundDriver_SDL() : DriverFactoryBase(Driver::DT_SOUND, 5, "sdl", "SDL Sound Driver") {}
+ /* virtual */ Driver *CreateInstance() const { return new SoundDriver_SDL(); }
};
#endif /* SOUND_SDL_H */