We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de9b2f7 commit ebf6812Copy full SHA for ebf6812
pcbasic/basic/display/framebuffer.py
@@ -180,12 +180,14 @@ class Tandy6SpriteBuilder(PlanedSpriteBuilder):
180
def pack(self, sprite):
181
"""Pack sprite, report only half the width packed."""
182
record = PlanedSpriteBuilder.pack(self, sprite)
183
- width_record = struct.pack('<H', sprite.width // 2)
+ width = sprite.width // self.width_factor
184
+ width_record = struct.pack('<H', width)
185
return width_record + record[2:]
186
187
def unpack(self, array):
188
"""Unpack sprite, twice the width reported."""
- width = 2 * struct.unpack('<H', array[:2])
189
+ width, = struct.unpack('<H', array[:2])
190
+ width *= self.width_factor
191
size_record = struct.pack('<H', width)
192
return PlanedSpriteBuilder.unpack(self, size_record + array[2:])
193
0 commit comments