From 8278cef5464837744703914e453406f987bdbd8e Mon Sep 17 00:00:00 2001 From: Graham Northup Date: Fri, 7 Sep 2018 06:24:58 -0400 Subject: oh goodness, it compiles .wavs now --- broadcast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'broadcast.py') 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)) -- cgit v1.2.3-70-g09d2