Skip to content

Commit ae5a967

Browse files
committed
Fix slip in sqCamera-linux.c
1 parent 8eb54f8 commit ae5a967

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platforms/unix/plugins/CameraPlugin/sqCamera-linux.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ convertImageRGB24toARGB32 (camPtr cam)
318318
return;
319319

320320
while (--pixelCount >= 0) {
321-
*dst++ = 0xFF000000 | (*src[0] << 16) | (*src[1] << 8) | *src[2];
321+
*dst++ = 0xFF000000 | (src[0] << 16) | (src[1] << 8) | src[2];
322322
src += 3;
323323
}
324324
}

0 commit comments

Comments
 (0)