1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-29 00:31:01 -08:00

* src/sfnt.c (sfnt_mul_f26dot6_fixed): Correct typo in last change.

This commit is contained in:
Po Lu 2024-01-23 09:41:41 +08:00
parent f821ac29e0
commit a3d10046d9

View file

@ -6554,7 +6554,7 @@ sfnt_mul_f2dot14 (sfnt_f2dot14 a, int32_t b)
static sfnt_f26dot6
sfnt_mul_f26dot6_fixed (sfnt_f26dot6 x, sfnt_fixed y)
{
return sfnt_mul_fixed (x, y);
return sfnt_mul_fixed_round (x, y);
}
/* Return the floor of the specified 26.6 fixed point value X. */