(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.

This commit is contained in:
peter1138
2009-01-08 12:05:14 +00:00
parent 45f1d83bc7
commit 020dbb180a
4 changed files with 12 additions and 8 deletions

View File

@@ -9,6 +9,7 @@
class MusicDriver_ExtMidi: public MusicDriver {
private:
char *command;
char song[MAX_PATH];
pid_t pid;