diff options
author | yenatch <yenatch@gmail.com> | 2014-04-14 14:24:05 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-04-14 14:24:05 -0400 |
commit | 345c792b693517d0c9b8fc24b638cf7a4386316d (patch) | |
tree | 582b4a5c3a5b3a2d3ee45d926e29c2cfa51f4d70 | |
parent | c9b6df3193c574ed20ade3c14184f57a3dc7c37f (diff) |
Clearer explanation for porting https://github.com/magical/pokemon-sprites-rby to python 2.7.
-rw-r--r-- | pokemontools/pic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/pic.py b/pokemontools/pic.py index 25b1e0a..34e88f5 100644 --- a/pokemontools/pic.py +++ b/pokemontools/pic.py @@ -25,7 +25,7 @@ class Decompressor: """ pokered pic decompression. - Lifted from github.com/magical/pokemon-sprites-rby. + Ported to python 2.7 from the python 3 code at https://github.com/magical/pokemon-sprites-rby. """ table1 = [(2 << i) - 1 for i in xrange(16)] |