Skip to content

Commit

Permalink
sfc: reduce overscan crop area slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeUsher committed Jan 25, 2025
1 parent a584782 commit fa1c21b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ares/sfc/ppu-performance/ppu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ auto PPU::main() -> void {
int x = 24;
int y = 16;
int w = 564 - 48;
int h = height() - 20;
int h = height() - 16;

if(Region::PAL()) {
y += 25;
Expand Down
2 changes: 1 addition & 1 deletion ares/sfc/ppu/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ auto PPU::main() -> void {
int x = 24;
int y = 16;
int w = 564 - 48;
int h = height() - 20;
int h = height() - 16;

if(Region::PAL()) {
y += 25;
Expand Down

0 comments on commit fa1c21b

Please sign in to comment.