Skip to content

Commit

Permalink
cv, msx, myv: adjust overscan numbers (#1805)
Browse files Browse the repository at this point in the history
active framing
  • Loading branch information
FitzRoyX authored Jan 31, 2025
1 parent 5d7dbb7 commit 539aa9b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions ares/cv/vdp/vdp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
8 changes: 4 additions & 4 deletions ares/msx/vdp/vdp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
8 changes: 4 additions & 4 deletions ares/myvision/vdp/vdp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 539aa9b

Please sign in to comment.