reversing content order
This commit is contained in:
parent
bd7de786ac
commit
ab06e64b74
|
@ -50,4 +50,5 @@ class BMPContent:
|
||||||
self.map = []
|
self.map = []
|
||||||
|
|
||||||
for byte in binContent:
|
for byte in binContent:
|
||||||
self.map.append( ord(byte) );
|
self.map.append( ord(byte) )
|
||||||
|
self.map = self.map[::-1]
|
BIN
code/classes.pyc
BIN
code/classes.pyc
Binary file not shown.
Loading…
Reference in New Issue