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);