Skip to content

Commit

Permalink
sg: adjust overscan numbers (#1804)
Browse files Browse the repository at this point in the history
set to active display 256x192
  • Loading branch information
FitzRoyX authored Jan 30, 2025
1 parent ce2e6f8 commit 6176287
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ares/sg/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 6176287

Please sign in to comment.