summaryrefslogtreecommitdiff
path: root/src/sound/sound_driver.hpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-11-25 21:09:00 +0000
committerrubidium <rubidium@openttd.org>2008-11-25 21:09:00 +0000
commit5ebb48fa8633dc90e7fd6343f117d513f682dc1e (patch)
tree8f56ace83113a8c96887be195a473b1132beb9e5 /src/sound/sound_driver.hpp
parent285d1846aebfc5bf3b874ff5d431a568e6a49da2 (diff)
downloadopenttd-5ebb48fa8633dc90e7fd6343f117d513f682dc1e.tar.xz
(svn r14631) -Add: support for Allegro as sound backend.
Diffstat (limited to 'src/sound/sound_driver.hpp')
-rw-r--r--src/sound/sound_driver.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sound/sound_driver.hpp b/src/sound/sound_driver.hpp
index 8f3f08579..5756db309 100644
--- a/src/sound/sound_driver.hpp
+++ b/src/sound/sound_driver.hpp
@@ -8,6 +8,9 @@
#include "../driver.h"
class SoundDriver: public Driver {
+public:
+ /* Called once every tick */
+ virtual void MainLoop() {}
};
class SoundDriverFactoryBase: public DriverFactoryBase {