dansanderson / picotool

Tools and Python libraries for manipulating Pico-8 game files. http://www.lexaloffle.com/pico-8.php
MIT License
367 stars 46 forks source link

Incorrect minification of goto label #33

Closed freds72 closed 6 years ago

freds72 commented 6 years ago

Labels are not properly replaced by the corresponding minified goto name. Original: ::draw:: cls(0) goto draw

Minified: ::draw:: cls(0) goto a

dansanderson commented 6 years ago

Fixed.