View Single Post
Old 01-08-2012, 02:17 PM   #13
captain_caveman
Human being with feelings
 
captain_caveman's Avatar
 
Join Date: Dec 2011
Posts: 999
Default

The only thing I can think of is that this line is not working...
Code:
playednotes[note] > 0 ? (
... because I have had issues before using "arrays" that were solved by using parenthesis, so changing it to...
Code:
(playednotes[note]) > 0 ? (
... might work.

If not, I'll try to test it later.
captain_caveman is offline   Reply With Quote