Skip to content

Commit

Permalink
fc: reduce overscan cropping similar to ms
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeUsher committed Feb 15, 2024
1 parent 16379aa commit 7ec1e14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ares/fc/ppu/ppu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ auto PPU::frame() -> void {
screen->setSize(282, displayHeight());
screen->setViewport(0, 0, 282, displayHeight());
} else {
int x = 24;
int x = 16;
int y = 8;
int width = 282 - 48;
int width = 282 - 32;
int height = displayHeight() - 16;

if(Region::PAL()) height -= 48;
Expand Down

0 comments on commit 7ec1e14

Please sign in to comment.