Skip to content

Commit 3819a9c

Browse files
committed
fix numpy crash on sprite XOR
1 parent 997d5f7 commit 3819a9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pcbasic/video_pygame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1354,7 +1354,7 @@ def put_rect(x0, y0, x1, y1, array, operation_token):
13541354
dest_array = pygame.surfarray.pixels2d(
13551355
canvas[apagenum].subsurface(pygame.Rect(x0, y0, x1-x0+1, y1-y0+1)))
13561356
# apply the operation
1357-
operations[operation_token](dest_array, numpy.array(array).T)
1357+
operations[operation_token](dest_array, numpy.array(array, dtype='B').T)
13581358
screen_changed = True
13591359

13601360
else:

0 commit comments

Comments
 (0)