Skip to content

Commit 539aa9b

Browse files
authored
cv, msx, myv: adjust overscan numbers (#1805)
active framing
1 parent 5d7dbb7 commit 539aa9b

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

ares/cv/vdp/vdp.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ auto VDP::frame() -> void {
4444
screen->setSize(284, 243);
4545
screen->setViewport(0, 0, 284, 243);
4646
} else {
47-
int x = 16;
48-
int y = 16;
49-
int width = 284 - 32;
50-
int height = 243 - 32;
47+
int x = 13;
48+
int y = 27;
49+
int width = 284 - 28;
50+
int height = 243 - 51;
5151

5252
screen->setSize(width, height);
5353
screen->setViewport(x, y, width, height);

ares/msx/vdp/vdp.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ auto VDP::frame() -> void {
6464
screen->setSize(284 * screenScale, 243 * screenScale);
6565
screen->setViewport(0, 0, 284 * screenScale, 243 * screenScale);
6666
} else {
67-
int x = 16;
68-
int y = 16;
69-
int width = 284 - 32;
70-
int height = 243 - 32;
67+
int x = 13;
68+
int y = 27;
69+
int width = 284 - 28;
70+
int height = 243 - 51;
7171

7272
screen->setSize(width * screenScale, height * screenScale);
7373
screen->setViewport(x * screenScale, y * screenScale, width * screenScale, height * screenScale);

ares/myvision/vdp/vdp.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ auto VDP::frame() -> void {
4444
screen->setSize(284, 243);
4545
screen->setViewport(0, 0, 284, 243);
4646
} else {
47-
int x = 16;
48-
int y = 16;
49-
int width = 284 - 32;
50-
int height = 243 - 32;
47+
int x = 13;
48+
int y = 27;
49+
int width = 284 - 28;
50+
int height = 243 - 51;
5151

5252
screen->setSize(width, height);
5353
screen->setViewport(x, y, width, height);

0 commit comments

Comments
 (0)