Mercurial > mplayer.hg
changeset 21320:4a7e96f1eebf
Cosmetics: reindent.
author | eugeni |
---|---|
date | Mon, 27 Nov 2006 17:34:47 +0000 |
parents | 415e2119e91c |
children | 7b7627ff1937 |
files | libass/ass_font.c |
diffstat | 1 files changed, 9 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/libass/ass_font.c Mon Nov 27 17:33:59 2006 +0000 +++ b/libass/ass_font.c Mon Nov 27 17:34:47 2006 +0000 @@ -97,21 +97,21 @@ font->v.x != v->x || font->v.y != v->y ) { - font->m.xx = m->xx; - font->m.xy = m->xy; - font->m.yx = m->yx; - font->m.yy = m->yy; - font->v.x = v->x; - font->v.y = v->y; - FT_Set_Transform(font->face, &font->m, &font->v); + font->m.xx = m->xx; + font->m.xy = m->xy; + font->m.yx = m->yx; + font->m.yy = m->yy; + font->v.x = v->x; + font->v.y = v->y; + FT_Set_Transform(font->face, &font->m, &font->v); } } void ass_font_set_size(ass_font_t* font, int size) { if (font->size != size) { - font->size = size; - FT_Set_Pixel_Sizes(font->face, 0, size); + font->size = size; + FT_Set_Pixel_Sizes(font->face, 0, size); } }