diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-09-19 00:41:13 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-09-19 00:41:13 -0400 |
| commit | f7aea30ee8b9d1616b39defc6fb64b1c53886805 (patch) | |
| tree | dee31d564ad2c2a600186fb5a6068806e0775af8 /tools/pic.py | |
| parent | Merge branch 'master' of https://github.com/pret/pokered (diff) | |
| parent | Fix tools/unnamed.py and add tools/consts.py (diff) | |
| download | pokeyellow-f7aea30ee8b9d1616b39defc6fb64b1c53886805.tar.gz pokeyellow-f7aea30ee8b9d1616b39defc6fb64b1c53886805.tar.xz pokeyellow-f7aea30ee8b9d1616b39defc6fb64b1c53886805.zip | |
Merge remote-tracking branch 'remotes/pokered/master'
Diffstat (limited to 'tools/pic.py')
| -rwxr-xr-x[-rw-r--r--] | tools/pic.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/pic.py b/tools/pic.py index afc34c90..7a663832 100644..100755 --- a/tools/pic.py +++ b/tools/pic.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- """ -A library for use with compressed monster and trainer pics in pokered. +A library for use with compressed monster and trainer pics in pokeyellow. """ from __future__ import absolute_import from __future__ import division @@ -26,7 +26,7 @@ def bitflip(x, n): class Decompressor: """ - pokered pic decompression. + pokeyellow pic decompression. Ported to python 2.7 from the python 3 code at https://github.com/magical/pokemon-sprites-rby. """ @@ -228,7 +228,7 @@ def bytes_to_bits(bytelist): class Compressor: """ - pokered pic compression. + pokeyellow pic compression. Adapted from stag019's C compressor. """ |
