Skip to content

Commit bf9b3ae

Browse files
committed
enhancement: improve auto-crop when using NTSC
1 parent 864d0c1 commit bf9b3ae

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/osdep/amiberry_gfx.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3105,6 +3105,10 @@ void auto_crop_image()
31053105
if (currprefs.gfx_resolution == RES_HIRES || currprefs.gfx_resolution == RES_SUPERHIRES)
31063106
height *= 2;
31073107
}
3108+
3109+
if (currprefs.ntscmode)
3110+
height = height * 6 / 5;
3111+
31083112
if (currprefs.gfx_correct_aspect == 0)
31093113
{
31103114
width = sdl_mode.w;

0 commit comments

Comments
 (0)