summaryrefslogtreecommitdiff
path: root/src/sound
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound')
-rw-r--r--src/sound/sound_driver.hpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/sound/sound_driver.hpp b/src/sound/sound_driver.hpp
index 2b9cf145d..0df69b8b4 100644
--- a/src/sound/sound_driver.hpp
+++ b/src/sound/sound_driver.hpp
@@ -19,9 +19,15 @@ class SoundDriver : public Driver {
public:
/** Called once every tick */
virtual void MainLoop() {}
+
+ /**
+ * Get the currently active instance of the sound driver.
+ */
+ static SoundDriver *GetInstance() {
+ return static_cast<SoundDriver*>(*DriverFactoryBase::GetActiveDriver(Driver::DT_SOUND));
+ }
};
-extern SoundDriver *_sound_driver;
extern char *_ini_sounddriver;
#endif /* SOUND_SOUND_DRIVER_HPP */