Skip to content

Commit

Permalink
ms: adjust overscan numbers (#1803)
Browse files Browse the repository at this point in the history
targeted 192 for ntsc and 224 for pal. Framing on top and sides is now
precise to active display. Sadly, only a few codemasters pal games
utilized 224.
  • Loading branch information
FitzRoyX authored Jan 30, 2025
1 parent 6176287 commit 5d7dbb7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ares/ms/vdp/vdp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ auto VDP::main() -> void {
screen->setSize(284, screenHeight());
screen->setViewport(0, 0, 284, screenHeight());
} else {
int x = 16;
int y = 24;
int width = 284 - 32;
int height = screenHeight() - 48;
int x = 13;
int y = 27;
int width = 284 - 28;
int height = screenHeight() - 51;

if(Region::PAL()) {
y += 24;
height -= 48;
y += 21;
height -= 13;
}

screen->setSize(width, height);
Expand Down

0 comments on commit 5d7dbb7

Please sign in to comment.