View Single Post
Old 04-18-2012, 01:54 PM   #128
Justin
Administrator
 
Justin's Avatar
 
Join Date: Jan 2005
Location: NYC
Posts: 15,746
Default

Quote:
Originally Posted by bang View Post
arp!0 better (presets load ok) but not right (midi output still garbled). data in the ouput queue looks ok, so that narrows it down to the midi_send logic? will look into that rsn. enjoy! /dan

I ran my script to see if the precedence fixes affected anything in arp!0, there was one spot:
Code:
!vntcnt || !vntmap[0] ?(
In 4.22, that would be
Code:
(!vntcnt) || (!vntmap)[0] ? (
but it is now:
Code:
(!vntcnt) || !(vntmap[0]) ? (
Could that change cause it? If not, there still could be something amiss in the optimizer stage.. I can give a build with some of the optimizations off, if that helps.
Justin is online now   Reply With Quote