# HG changeset patch # User eugeni # Date 1178031920 0 # Node ID deb1b445110a8123b691e25780e0f6c96e0f4eda # Parent 15a05bafc9c725195d11729b55682488e7f6c258 Don't recalculate rotation radius. diff -r 15a05bafc9c7 -r deb1b445110a libass/ass_render.c --- a/libass/ass_render.c Tue May 01 14:29:28 2007 +0000 +++ b/libass/ass_render.c Tue May 01 15:05:20 2007 +0000 @@ -1963,8 +1963,8 @@ if (info->bm == 0) { // calculating shift vector - shift.x = int_to_d6(info->pos.x + device_x - center.x); - shift.y = - int_to_d6(info->pos.y + device_y - center.y); + shift.x = int_to_d6(info->hash_key.shift_x); + shift.y = int_to_d6(info->hash_key.shift_y); transform_3d(shift, &info->glyph, &info->outline_glyph, info->frx, info->fry, info->frz); }