Skip to content

Commit

Permalink
Fix computercraft "paint" program corrupted graphics
Browse files Browse the repository at this point in the history
  • Loading branch information
CrazedProgrammer committed Mar 20, 2019
1 parent e728224 commit f40dc28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platforms/puc/term.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
(list (string/char code)
(cond
[(< code 32) " "]
[(> code 127) " "]
[(> code 126) " "]
[true (string/char code)])))
(range :from 0 :to 255))))

Expand Down

0 comments on commit f40dc28

Please sign in to comment.