aboutsummaryrefslogtreecommitdiff
path: root/broadcast.py
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2018-09-07 06:24:58 -0400
committerGraham Northup <grissess@nexusg.org>2018-09-07 06:24:58 -0400
commit8278cef5464837744703914e453406f987bdbd8e (patch)
tree847b3b5be89a592204e8064edda3b208ce0d09f6 /broadcast.py
parentd19490798f2fb76af7933d1d8dc304f8cc46c581 (diff)
oh goodness, it compiles .wavs now
Diffstat (limited to 'broadcast.py')
-rw-r--r--broadcast.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/broadcast.py b/broadcast.py
index fdb5ebe..16b06de 100644
--- a/broadcast.py
+++ b/broadcast.py
@@ -162,7 +162,7 @@ def gui_pygame():
for cli, note in sorted(playing_notes.items(), key = lambda pair: pair[0]):
pitch = note[0]
col = colorsys.hls_to_rgb(float(idx) / len(targets), note[1]/2.0, 1.0)
- col = [int(i*255) for i in col]
+ col = [min(max(int(i*255), 0), 255) for i in col]
disp.fill(col, (WIDTH - 1, HEIGHT - pitch * PFAC - PFAC, 1, PFAC))
idx += 1
tsurf = font.render('%0.3f' % ((play_time() - BASETIME) / factor,), True, (255, 255, 255), (0, 0, 0))