Skip to content

Commit

Permalink
Correct startup resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
IanSB committed Mar 3, 2023
1 parent 3f8db67 commit 7c7991c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rgb_to_hdmi.c
Expand Up @@ -3318,7 +3318,7 @@ geometry_get_fb_params(capinfo);
if (parameters[F_POWERUP_MESSAGE]) {
log_info("Display startup message");
int h_size = get_hdisplay();
int v_size = get_vdisplay();
int v_size = get_true_vdisplay();
if (sync_detected) {
sprintf(osdline, "%d x %d @ %dHz", h_size, v_size, info_display_vsync_freq_hz >> half_frame_rate);
} else {
Expand Down

0 comments on commit 7c7991c

Please sign in to comment.