On Tue, 14 Aug 2007, David Adler wrote:
Everything sounds and works great here except loading
of MIDI maps.
Changing controller assignments works, saving of the changed MIDI map
works as well, loading works to the extent that the loaded
controller-numbers appear correctly when right-clicking on the
parameter name, but the respond to controller-messages remains according
to the default.map or according to changes made before on the running
app; until any change is manually applied again.
I tried altering default.map to my needs, it loads as any other map, but
response even then remains according to the original default.map.
This happens in version 0.11.0 and 0.11.1, purging configuration-files
and reinstalling did not help.
Anyone else experiencing this? Any clue?
Thanks for catching this. Can you apply this patch and let me know
how it goes?
--- src/param.c.orig 2007-07-30 02:53:32.000000000 -0700
+++ src/param.c 2007-08-14 15:46:24.000000000 -0700
@@ -1052,6 +1052,9 @@
fclose (map_f);
midimap_modified = 0;
+ /* rebuild ccmatrix based on new map */
+ build_ccmatrix ();
+
return 0;
}
Cheers,
--ww