gpu_unai: fix clear masking
authornotaz <notasas@gmail.com>
Mon, 27 Nov 2023 22:47:16 +0000 (00:47 +0200)
committernotaz <notasas@gmail.com>
Mon, 27 Nov 2023 23:51:02 +0000 (01:51 +0200)
plugins/gpu_unai/gpu_raster_image.h

index 909ca39..7c9eb4d 100644 (file)
@@ -160,7 +160,7 @@ void gpuClearImage(PtrUnion packet)
        x0 = le16_to_s16(packet.U2[2]);
        y0 = le16_to_s16(packet.U2[3]);
        w0 = le16_to_s16(packet.U2[4]) & 0x3ff;
-       h0 = le16_to_s16(packet.U2[5]) & 0x3ff;
+       h0 = le16_to_s16(packet.U2[5]) & 0x1ff;
 
        w0 += x0;
        if (x0 < 0) x0 = 0;