Skip to content

Commit ebf6812

Browse files
committed
fix crash on Tandy SCREEN 6 PUT, reported in #163
1 parent de9b2f7 commit ebf6812

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pcbasic/basic/display/framebuffer.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -180,12 +180,14 @@ class Tandy6SpriteBuilder(PlanedSpriteBuilder):
180180
def pack(self, sprite):
181181
"""Pack sprite, report only half the width packed."""
182182
record = PlanedSpriteBuilder.pack(self, sprite)
183-
width_record = struct.pack('<H', sprite.width // 2)
183+
width = sprite.width // self.width_factor
184+
width_record = struct.pack('<H', width)
184185
return width_record + record[2:]
185186

186187
def unpack(self, array):
187188
"""Unpack sprite, twice the width reported."""
188-
width = 2 * struct.unpack('<H', array[:2])
189+
width, = struct.unpack('<H', array[:2])
190+
width *= self.width_factor
189191
size_record = struct.pack('<H', width)
190192
return PlanedSpriteBuilder.unpack(self, size_record + array[2:])
191193

0 commit comments

Comments
 (0)