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, 4 insertions, 4 deletions
diff --git a/src/sound/sdl_s.h b/src/sound/sdl_s.h
index 544ce2070..2d36b4629 100644
--- a/src/sound/sdl_s.h
+++ b/src/sound/sdl_s.h
@@ -17,17 +17,17 @@
/** Implementation of the SDL sound driver. */
class SoundDriver_SDL : public SoundDriver {
public:
- /* virtual */ const char *Start(const char * const *param);
+ const char *Start(const char * const *param) override;
- /* virtual */ void Stop();
- /* virtual */ const char *GetName() const { return "sdl"; }
+ void Stop() override;
+ const char *GetName() const override { return "sdl"; }
};
/** Factory for the SDL sound driver. */
class FSoundDriver_SDL : public DriverFactoryBase {
public:
FSoundDriver_SDL() : DriverFactoryBase(Driver::DT_SOUND, 5, "sdl", "SDL Sound Driver") {}
- /* virtual */ Driver *CreateInstance() const { return new SoundDriver_SDL(); }
+ Driver *CreateInstance() const override { return new SoundDriver_SDL(); }
};
#endif /* SOUND_SDL_H */