summaryrefslogtreecommitdiff
path: root/src/sound/allegro_s.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound/allegro_s.h')
-rw-r--r--src/sound/allegro_s.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sound/allegro_s.h b/src/sound/allegro_s.h
index e0a247f7b..255be66c7 100644
--- a/src/sound/allegro_s.h
+++ b/src/sound/allegro_s.h
@@ -17,12 +17,12 @@
/** Implementation of the allegro sound driver. */
class SoundDriver_Allegro : public SoundDriver {
public:
- /* virtual */ const char *Start(const char * const *param);
+ const char *Start(const char * const *param);
- /* virtual */ void Stop();
+ void Stop();
- /* virtual */ void MainLoop();
- /* virtual */ const char *GetName() const { return "allegro"; }
+ void MainLoop();
+ const char *GetName() const { return "allegro"; }
};
/** Factory for the allegro sound driver. */