actually draw to the edges of the screen on naomi.

This commit is contained in:
davidhay 2009-05-05 22:25:29 +00:00
parent ccdf4727ad
commit 3831a065ef

View File

@ -2056,9 +2056,9 @@ VIDEO_UPDATE(dc)
#endif #endif
// copy our fake framebuffer bitmap (where things have been rendered) to the screen // copy our fake framebuffer bitmap (where things have been rendered) to the screen
for (y = visarea->min_y ; y < visarea->max_y ; y++) for (y = visarea->min_y ; y <= visarea->max_y ; y++)
{ {
for (x = visarea->min_x ; x < visarea->max_x ; x++) for (x = visarea->min_x ; x <= visarea->max_x ; x++)
{ {
UINT32* src = BITMAP_ADDR32(fakeframebuffer_bitmap, y, x); UINT32* src = BITMAP_ADDR32(fakeframebuffer_bitmap, y, x);
UINT32* dst = BITMAP_ADDR32(bitmap, y, x); UINT32* dst = BITMAP_ADDR32(bitmap, y, x);