Changeset 6702

Show
Ignore:
Timestamp:
06/30/09 18:12:51 (14 months ago)
Author:
smimram
Message:

More polyphony.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/liquidsoap/src/synth/synth.ml

    r6701 r6702  
    4646  method note_on n v = 
    4747    (* Limit the number of notes for now. TODO: parameter *) 
    48     if List.length notes > 8 then notes <- List.rev (List.tl (List.rev notes)); 
     48    if List.length notes > 16 then notes <- List.rev (List.tl (List.rev notes)); 
    4949    notes <- (n, ref (self#note_init n v))::notes 
    5050