vlc/vlc-2.0 | branch: master | Rémi Denis-Courmont <[email protected]> | Thu Nov 8 19:12:50 2012 +0200| [14189678663a8954899595d6f0978810f27fcfba] | committer: Rémi Denis-Courmont
lua: fix "center" OSD alignment (refs #6326) (cherry picked from commit c1157eb5cc71a6c1c2210957bcc7f9cc0c744d6a) > http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=14189678663a8954899595d6f0978810f27fcfba --- modules/lua/libs/osd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lua/libs/osd.c b/modules/lua/libs/osd.c index b8ce9ce..ab06907 100644 --- a/modules/lua/libs/osd.c +++ b/modules/lua/libs/osd.c @@ -95,7 +95,7 @@ static int vlc_osd_position_from_string( const char *psz_name ) int i_position; const char *psz_name; } pp_icons[] = - { { SUBPICTURE_ALIGN_MASK, "center" }, + { { 0, "center" }, { SUBPICTURE_ALIGN_LEFT, "left" }, { SUBPICTURE_ALIGN_RIGHT, "rigth" }, { SUBPICTURE_ALIGN_TOP, "top" }, _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
