summaryrefslogtreecommitdiff
path: root/src/sound/win32_s.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound/win32_s.h')
-rw-r--r--src/sound/win32_s.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sound/win32_s.h b/src/sound/win32_s.h
index c6c8e8d14..a0d53a2da 100644
--- a/src/sound/win32_s.h
+++ b/src/sound/win32_s.h
@@ -17,17 +17,17 @@
/** Implementation of the sound driver for Windows. */
class SoundDriver_Win32 : 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 "win32"; }
+ void Stop() override;
+ const char *GetName() const override { return "win32"; }
};
/** Factory for the sound driver for Windows. */
class FSoundDriver_Win32 : public DriverFactoryBase {
public:
FSoundDriver_Win32() : DriverFactoryBase(Driver::DT_SOUND, 9, "win32", "Win32 WaveOut Sound Driver") {}
- /* virtual */ Driver *CreateInstance() const { return new SoundDriver_Win32(); }
+ Driver *CreateInstance() const override { return new SoundDriver_Win32(); }
};
#endif /* SOUND_WIN32_H */