X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/67109eef29514092df311f5989fcd62c31e1d20f..c1cc31ac5cc581f2142c15794ef7c6cfaa3ec6d9:/video/generic.c?ds=sidebyside diff --git a/video/generic.c b/video/generic.c index 319b5ad..8c6866d 100644 --- a/video/generic.c +++ b/video/generic.c @@ -28,11 +28,11 @@ void copy_pixels_generic32(char *buf, int x, int y, int width, int height) int cx, cy; unsigned int *ibuf = (unsigned int *)buf; unsigned int *fbuf; - for (cy = y; cy < (y + height); cy++) + for (cy = 0; cy < height; cy++) { fbuf = (unsigned int *)fb->fbaddr; - fbuf += cy * (fb->curmode.xres) + x; - for (cx = x; cx < (x + width); cx++) + fbuf += (cy + y) * (fb->curmode.xres) + x; + for (cx = 0; cx < width; cx++) *(ibuf++) = *(fbuf++); } }