From 589556b76de796c664074c8f3c8dd6a7e90872ea Mon Sep 17 00:00:00 2001 From: pagefault <> Date: Wed, 5 Apr 2006 11:32:22 +0000 Subject: [PATCH] Trim top two lines from top of screen when using NTSC filter because it seems to want to draw green crap there --- zsnes/src/win/winlink.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zsnes/src/win/winlink.cpp b/zsnes/src/win/winlink.cpp index fb845e01..69f595d3 100644 --- a/zsnes/src/win/winlink.cpp +++ b/zsnes/src/win/winlink.cpp @@ -2013,7 +2013,8 @@ void initwinvideo(void) break; } - BlitArea.top = 0; + if (!NTSCFilter) BlitArea.top = 0; + else BlitArea.top = 2; BlitArea.left = 0; BlitArea.right = SurfaceX;