diff options
author | Graham Northup <grissess@nexusg.org> | 2018-09-07 06:24:58 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2018-09-07 06:24:58 -0400 |
commit | 8278cef5464837744703914e453406f987bdbd8e (patch) | |
tree | 847b3b5be89a592204e8064edda3b208ce0d09f6 /broadcast.py | |
parent | d19490798f2fb76af7933d1d8dc304f8cc46c581 (diff) |
oh goodness, it compiles .wavs now
Diffstat (limited to 'broadcast.py')
-rw-r--r-- | broadcast.py | 2 |
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)) |