Fix indent.

This commit is contained in:
Relintai 2020-12-23 17:55:55 +01:00
parent 15922d4bf9
commit 4c68c84f59

2
main.c
View File

@ -154,7 +154,7 @@ int process_interlaced() {
uint16_t *src = &screenbuf[bufNum][firstRow * vinfo.xres + firstCol]; uint16_t *src = &screenbuf[bufNum][firstRow * vinfo.xres + firstCol];
uint16_t *dst = (uint16_t *)&fbp[(firstRow * vinfo.xres + firstCol) * 2]; uint16_t *dst = (uint16_t *)&fbp[(firstRow * vinfo.xres + firstCol) * 2];
uint32_t moffset = vinfo.xres * INTERLACE_NUM; uint32_t moffset = vinfo.xres * INTERLACE_NUM;
for(int row = firstRow; row <= lastRow; row += INTERLACE_NUM) { for(int row = firstRow; row <= lastRow; row += INTERLACE_NUM) {
memcpy(dst, src, bytes); memcpy(dst, src, bytes);