From 539aa9b7d66d042efd435407d86e5adc21f7909c Mon Sep 17 00:00:00 2001 From: FitzRoyX <57089001+FitzRoyX@users.noreply.github.com> Date: Fri, 31 Jan 2025 00:34:47 -0600 Subject: [PATCH] cv, msx, myv: adjust overscan numbers (#1805) active framing --- ares/cv/vdp/vdp.cpp | 8 ++++---- ares/msx/vdp/vdp.cpp | 8 ++++---- ares/myvision/vdp/vdp.cpp | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/ares/cv/vdp/vdp.cpp b/ares/cv/vdp/vdp.cpp index dc5086a4bf..c45d90dab3 100644 --- a/ares/cv/vdp/vdp.cpp +++ b/ares/cv/vdp/vdp.cpp @@ -44,10 +44,10 @@ auto VDP::frame() -> void { screen->setSize(284, 243); screen->setViewport(0, 0, 284, 243); } else { - int x = 16; - int y = 16; - int width = 284 - 32; - int height = 243 - 32; + int x = 13; + int y = 27; + int width = 284 - 28; + int height = 243 - 51; screen->setSize(width, height); screen->setViewport(x, y, width, height); diff --git a/ares/msx/vdp/vdp.cpp b/ares/msx/vdp/vdp.cpp index 15c1694e17..c15448a9c9 100644 --- a/ares/msx/vdp/vdp.cpp +++ b/ares/msx/vdp/vdp.cpp @@ -64,10 +64,10 @@ auto VDP::frame() -> void { screen->setSize(284 * screenScale, 243 * screenScale); screen->setViewport(0, 0, 284 * screenScale, 243 * screenScale); } else { - int x = 16; - int y = 16; - int width = 284 - 32; - int height = 243 - 32; + int x = 13; + int y = 27; + int width = 284 - 28; + int height = 243 - 51; screen->setSize(width * screenScale, height * screenScale); screen->setViewport(x * screenScale, y * screenScale, width * screenScale, height * screenScale); diff --git a/ares/myvision/vdp/vdp.cpp b/ares/myvision/vdp/vdp.cpp index c13ad41f97..22cb352020 100644 --- a/ares/myvision/vdp/vdp.cpp +++ b/ares/myvision/vdp/vdp.cpp @@ -44,10 +44,10 @@ auto VDP::frame() -> void { screen->setSize(284, 243); screen->setViewport(0, 0, 284, 243); } else { - int x = 16; - int y = 16; - int width = 284 - 32; - int height = 243 - 32; + int x = 13; + int y = 27; + int width = 284 - 28; + int height = 243 - 51; screen->setSize(width, height); screen->setViewport(x, y, width, height);