diff options
author | peter1138 <peter1138@openttd.org> | 2009-01-08 12:05:14 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2009-01-08 12:05:14 +0000 |
commit | 020dbb180a11d27b2064640953f3960ede09f9c6 (patch) | |
tree | fce554a01119cd5d6c7bf58f770a96d121a41f35 /src/music/extmidi.h | |
parent | 45f1d83bc76d7d4d47885cf8489669300d072f8c (diff) | |
download | openttd-020dbb180a11d27b2064640953f3960ede09f9c6.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.h | 1 |
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; |