aboutsummaryrefslogtreecommitdiffstats
path: root/tools/pic.py
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2022-09-19 00:41:13 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2022-09-19 00:41:13 -0400
commitf7aea30ee8b9d1616b39defc6fb64b1c53886805 (patch)
treedee31d564ad2c2a600186fb5a6068806e0775af8 /tools/pic.py
parentMerge branch 'master' of https://github.com/pret/pokered (diff)
parentFix tools/unnamed.py and add tools/consts.py (diff)
downloadpokeyellow-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.py6
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.
"""