Skip to content

Commit

Permalink
DMX: Slightly increase minimum Height when auto-height is enabled, to…
Browse files Browse the repository at this point in the history
… avoid cases of some lines being cut-off (Lotus Esprit) #929
  • Loading branch information
midwan committed Apr 10, 2022
1 parent bfc8cad commit ad41dea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/osdep/amiberry_gfx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -939,8 +939,8 @@ void auto_crop_image()
new_width = min_width;
else
new_width = new_width / 2 << currprefs.gfx_resolution;
if (new_height < 192)
new_height = 192;
if (new_height < 204)
new_height = 204;

// Maximum values
if (new_width > currprefs.gfx_monitor[0].gfx_size_win.width)
Expand Down

0 comments on commit ad41dea

Please sign in to comment.