diff options
author | cbdev <cb@cbcdn.com> | 2019-11-07 18:44:19 +0100 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-11-07 18:44:19 +0100 |
commit | 350f0d2d2eaff5f0d57b09857102e2df1e96d733 (patch) | |
tree | fe81a48535d700195034e9173018c9a9a63d02d0 /backends | |
parent | 6c75f07260639fd2bc6d328d5f00c72ab4382fa8 (diff) | |
download | midimonster-350f0d2d2eaff5f0d57b09857102e2df1e96d733.tar.gz midimonster-350f0d2d2eaff5f0d57b09857102e2df1e96d733.tar.bz2 midimonster-350f0d2d2eaff5f0d57b09857102e2df1e96d733.zip |
Makefile install target and packaging instructions (Fixes #28)
Diffstat (limited to 'backends')
-rw-r--r-- | backends/lua.md | 5 | ||||
-rw-r--r-- | backends/maweb.c | 2 | ||||
-rw-r--r-- | backends/winmidi.c | 2 |
3 files changed, 3 insertions, 6 deletions
diff --git a/backends/lua.md b/backends/lua.md index 6ad5c2a..f38e189 100644 --- a/backends/lua.md +++ b/backends/lua.md @@ -43,7 +43,7 @@ The `lua` backend does not take any global configuration. | Option | Example value | Default value | Description | |---------------|-----------------------|-----------------------|-----------------------| -| `script` | `script.lua` | none | Lua source file | +| `script` | `script.lua` | none | Lua source file (relative to configuration file)| A single instance may have multiple `source` options specified, which will all be read cumulatively. @@ -64,6 +64,3 @@ Using these names as arguments to the output and value interface functions works Output values will not trigger corresponding input event handlers unless the channel is mapped back in the MIDIMonster configuration. - -The path to the Lua source files is relative to the current working directory. This may lead -to problems when copying configuration between installations. diff --git a/backends/maweb.c b/backends/maweb.c index c98d04b..57d04ae 100644 --- a/backends/maweb.c +++ b/backends/maweb.c @@ -470,7 +470,7 @@ static int maweb_request_playbacks(instance* inst){ offsets[0] = offsets[1] = offsets[2] = 1; page_index = data->channel[channel].page; //poll logic differs between the consoles because reasons - //dont quote me on this section + //don't quote me on this section if(data->peer_type == peer_dot2){ //blocks 0, 100 & 200 have 21 execs and need to be queried from fader view view = (data->channel[channel].index >= 300) ? 3 : 2; diff --git a/backends/winmidi.c b/backends/winmidi.c index de7d867..d6bc0bc 100644 --- a/backends/winmidi.c +++ b/backends/winmidi.c @@ -84,7 +84,7 @@ static int winmidi_configure_instance(instance* inst, char* option, char* value) } if(!strcmp(option, "write")){ if(data->write){ - fprintf(stderr, "winmidi instance %s already connected to an otput device\n", inst->name); + fprintf(stderr, "winmidi instance %s already connected to an output device\n", inst->name); return 1; } data->write = strdup(value); |