From ea8fa6b9c10d407415184ddd1d14f229ee190666 Mon Sep 17 00:00:00 2001 From: jbo_85 <> Date: Wed, 15 Feb 2006 03:10:48 +0000 Subject: [PATCH] Fixed Clear2xSaIBuffer to clear the first line, too. --- zsnes/src/video/procvidc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsnes/src/video/procvidc.c b/zsnes/src/video/procvidc.c index 481441ed..fa6a336a 100644 --- a/zsnes/src/video/procvidc.c +++ b/zsnes/src/video/procvidc.c @@ -76,5 +76,5 @@ void CapturePicture() void Clear2xSaIBuffer() { - memset(vidbufferofsb+576, 0xFF, 576*239); + memset(vidbufferofsb+288, 0xFF, 576*239); }