summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author davidhay <davidhay@localhost>2009-05-05 22:25:29 +0000
committer davidhay <davidhay@localhost>2009-05-05 22:25:29 +0000
commit3831a065ef9c5f7fc0d86e2bafff7b35e8d50375 (patch)
tree9135488d3a8f069eebaa17622efea8a6ce34b44f /src
parentccdf4727ad0f2206c2708a2423e6e5ae1af37a0e (diff)
actually draw to the edges of the screen on naomi.
Diffstat (limited to 'src')
-rw-r--r--src/mame/video/dc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/dc.c b/src/mame/video/dc.c
index c2f596656f7..4e209cb04b8 100644
--- a/src/mame/video/dc.c
+++ b/src/mame/video/dc.c
@@ -2056,9 +2056,9 @@ VIDEO_UPDATE(dc)
#endif
// 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* dst = BITMAP_ADDR32(bitmap, y, x);