Changeset 6702
- Timestamp:
- 06/30/09 18:12:51 (14 months ago)
- Files:
-
- 1 modified
-
trunk/liquidsoap/src/synth/synth.ml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/liquidsoap/src/synth/synth.ml
r6701 r6702 46 46 method note_on n v = 47 47 (* Limit the number of notes for now. TODO: parameter *) 48 if List.length notes > 8then notes <- List.rev (List.tl (List.rev notes));48 if List.length notes > 16 then notes <- List.rev (List.tl (List.rev notes)); 49 49 notes <- (n, ref (self#note_init n v))::notes 50 50
