summaryrefslogtreecommitdiff
path: root/src/music/extmidi.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2009-01-08 12:05:14 +0000
committerpeter1138 <peter1138@openttd.org>2009-01-08 12:05:14 +0000
commit8591ff41cc4597785cf4841c67a93f8ab8e006bb (patch)
treefce554a01119cd5d6c7bf58f770a96d121a41f35 /src/music/extmidi.h
parent91866a381d3fbcb25702406a096829a8dab6861a (diff)
downloadopenttd-8591ff41cc4597785cf4841c67a93f8ab8e006bb.tar.xz
(svn r14909) -Codechange: Remove global option for the extmidi driver and make it a driver parameter with the name cmd instead. This means if you have an "extmidi = ..." line in your config you must change it to "musicdriver = extmidi:cmd=...", in the [misc] section.
Diffstat (limited to 'src/music/extmidi.h')
-rw-r--r--src/music/extmidi.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/music/extmidi.h b/src/music/extmidi.h
index b5af27722..bae1e1b4f 100644
--- a/src/music/extmidi.h
+++ b/src/music/extmidi.h
@@ -9,6 +9,7 @@
class MusicDriver_ExtMidi: public MusicDriver {
private:
+ char *command;
char song[MAX_PATH];
pid_t pid;