summaryrefslogtreecommitdiff
path: root/unix.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-07-23 15:16:57 +0000
committertron <tron@openttd.org>2005-07-23 15:16:57 +0000
commit07a6e612ec560945c55798b67bbb56a00f1cb06b (patch)
tree1e83d1a7e27b80f46817858872b1f46a903f1d1b /unix.c
parentaf1d71985678a907dcb2c76e4873ec317cefecfc (diff)
downloadopenttd-07a6e612ec560945c55798b67bbb56a00f1cb06b.tar.xz
(svn r2685) -Codechange: Split the music/sound/video drivers into separate files and move them into subfolders.
This results in shorter and hopefully easier to maintain files. Note: I had to change paths in #include statements of some unrelated files, because I added the ottd base directory to the include path (-I.)
Diffstat (limited to 'unix.c')
-rw-r--r--unix.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/unix.c b/unix.c
index 758a2f355..bdbd7112e 100644
--- a/unix.c
+++ b/unix.c
@@ -7,6 +7,15 @@
#include "hal.h"
#include "variables.h"
+#include "music/extmidi.h"
+#include "music/null.h"
+
+#include "sound/null.h"
+#include "sound/sdl.h"
+
+#include "video/null.h"
+#include "video/sdl.h"
+
#include <dirent.h>
#include <unistd.h>
#include <sys/stat.h>