Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Util/CSoundNote.py
diff options
context:
space:
mode:
authorJames <olpc@localhost.localdomain>2007-01-28 08:58:53 (GMT)
committer James <olpc@localhost.localdomain>2007-01-28 08:58:53 (GMT)
commite1aa8419a4d53e55411777e33a66f8fc173f1a2c (patch)
tree5a6793293281ac8e55eb2c37b9f5896400e5d150 /Util/CSoundNote.py
parent9df98de3db07f52166d53290eccad6b55bb89454 (diff)
CSoundClientPlugin v1
Diffstat (limited to 'Util/CSoundNote.py')
-rw-r--r--Util/CSoundNote.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Util/CSoundNote.py b/Util/CSoundNote.py
index 03c6b87..bf215ca 100644
--- a/Util/CSoundNote.py
+++ b/Util/CSoundNote.py
@@ -65,7 +65,7 @@ def CSound_playNote( loopMode, secs_per_tick,
duration = duration + 1.0
if loopMode :
sc_loop_addScoreEvent15( 'i',
- Config.INSTRUMENTS[ instr ].csoundInstrumentId + 0.1,# trackId * 0.01,
+ Config.INSTRUMENTS[ instr ].csoundInstrumentId + trackId * 0.01,
onset,
duration,
pitch,
@@ -82,7 +82,7 @@ def CSound_playNote( loopMode, secs_per_tick,
Config.INSTRUMENTS[ instr ].crossDur )
else:
sc_scoreEvent15( 'i',
- Config.INSTRUMENTS[ instr ].csoundInstrumentId + 0.1,# trackId * 0.01,
+ Config.INSTRUMENTS[ instr ].csoundInstrumentId + trackId * 0.01,
onset * secs_per_tick,
duration,
pitch,