Trim top two lines from top of screen when using NTSC filter because it seems to want to draw green crap there

This commit is contained in:
pagefault
2006-04-05 11:32:22 +00:00
parent 049b460f6e
commit 589556b76d

View File

@@ -2013,7 +2013,8 @@ void initwinvideo(void)
break; break;
} }
BlitArea.top = 0; if (!NTSCFilter) BlitArea.top = 0;
else BlitArea.top = 2;
BlitArea.left = 0; BlitArea.left = 0;
BlitArea.right = SurfaceX; BlitArea.right = SurfaceX;