Skip to content

Commit d621911

Browse files
debug prints removed
1 parent 89ce3d8 commit d621911

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

system/lib/images.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ def load_image_from_buffer(img):
1414

1515
with open('pixel_buffer', 'rb') as pixel_buffer:
1616
channels_count = int.from_bytes(pixel_buffer.read(1), 'little')
17-
print(channels_count)
1817

1918
for y in range(height):
2019
for x in range(width):

system/lib/objects/texture.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ def load(self, swf, tag: int, has_texture: bool):
2323

2424
bytes2rgba(swf.reader, self.pixel_type, img)
2525

26-
print(pixel_type2str(self.pixel_type))
27-
2826
if tag in (27, 28):
2927
join_image(img)
3028
print()

0 commit comments

Comments
 (0)