Commit c1157eb5 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

lua: fix "center" OSD alignment (refs #6326)

parent 17746f42
...@@ -92,7 +92,7 @@ static int vlc_osd_position_from_string( const char *psz_name ) ...@@ -92,7 +92,7 @@ static int vlc_osd_position_from_string( const char *psz_name )
int i_position; int i_position;
const char *psz_name; const char *psz_name;
} pp_icons[] = } pp_icons[] =
{ { SUBPICTURE_ALIGN_MASK, "center" }, { { 0, "center" },
{ SUBPICTURE_ALIGN_LEFT, "left" }, { SUBPICTURE_ALIGN_LEFT, "left" },
{ SUBPICTURE_ALIGN_RIGHT, "rigth" }, { SUBPICTURE_ALIGN_RIGHT, "rigth" },
{ SUBPICTURE_ALIGN_TOP, "top" }, { SUBPICTURE_ALIGN_TOP, "top" },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment