diff options
author | Graham Northup <grissess@nexusg.org> | 2019-11-16 00:41:19 -0500 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2019-11-16 00:41:19 -0500 |
commit | 5b8b17790594117d74a80ead56f727aee3705fbf (patch) | |
tree | c0674807616e8dc816f9096a451e6b2a7cbe16ea /render.py | |
parent | 964ff690b2d82293b057397da482e2071d3827aa (diff) |
Fix signal rendering part
Diffstat (limited to 'render.py')
-rw-r--r-- | render.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -117,7 +117,7 @@ while True: sampwin.fill((0, 0, 0), (0, 0, SAMP_WIDTH, HEIGHT)) x = 0 for i in LAST_SAMPLES: - sy = int(AMP * HALFH + HALFH) + sy = int(i * HALFH + HALFH) pygame.gfxdraw.line(sampwin, x - 1, lastsy, x, sy, (0, 255, 0)) x += 1 lastsy = sy |