Skip to content

Commit

Permalink
input info: use "video resolution" instead of "display resolution"
Browse files Browse the repository at this point in the history
Technically, this is not the "display resolution", since we don't know
what the display will be (zoom and unzoom)
  • Loading branch information
jbkempf committed May 22, 2017
1 parent 6995a33 commit d230f78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/es_out.c
Original file line number Diff line number Diff line change
Expand Up @@ -3061,7 +3061,7 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t *

if( fmt->video.i_visible_width > 0 &&
fmt->video.i_visible_height > 0 )
info_category_AddInfo( p_cat, _("Display resolution"), "%ux%u",
info_category_AddInfo( p_cat, _("Video resolution"), "%ux%u",
fmt->video.i_visible_width,
fmt->video.i_visible_height);

Expand Down

0 comments on commit d230f78

Please sign in to comment.