reversing content order

This commit is contained in:
xdrm-brackets 2015-09-06 16:36:46 +02:00
parent bd7de786ac
commit ab06e64b74
2 changed files with 2 additions and 1 deletions

View File

@ -50,4 +50,5 @@ class BMPContent:
self.map = []
for byte in binContent:
self.map.append( ord(byte) );
self.map.append( ord(byte) )
self.map = self.map[::-1]

Binary file not shown.