summaryrefslogtreecommitdiff
path: root/src/sound/null_s.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound/null_s.h')
-rw-r--r--src/sound/null_s.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/sound/null_s.h b/src/sound/null_s.h
index 5951842cb..a2714d86d 100644
--- a/src/sound/null_s.h
+++ b/src/sound/null_s.h
@@ -24,12 +24,10 @@ public:
};
/** Factory for the null sound driver. */
-class FSoundDriver_Null: public SoundDriverFactory<FSoundDriver_Null> {
+class FSoundDriver_Null : public DriverFactoryBase {
public:
- static const int priority = 1;
- /* virtual */ const char *GetName() { return "null"; }
- /* virtual */ const char *GetDescription() { return "Null Sound Driver"; }
- /* virtual */ Driver *CreateInstance() { return new SoundDriver_Null(); }
+ FSoundDriver_Null() : DriverFactoryBase(Driver::DT_SOUND, 1, "null", "Null Sound Driver") {}
+ /* virtual */ Driver *CreateInstance() const { return new SoundDriver_Null(); }
};
#endif /* SOUND_NULL_H */