From ab3131ea8c1c9f7c52718a9f656eb05dfbae0e06 Mon Sep 17 00:00:00 2001 From: handa Date: Fri, 7 Jul 2006 03:44:42 +0000 Subject: [PATCH] (DEVICE_DELTA): Fix typo. --- src/font-ft.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/font-ft.c b/src/font-ft.c index 82d9850..d3fe45d 100644 --- a/src/font-ft.c +++ b/src/font-ft.c @@ -2231,7 +2231,7 @@ mfont__ft_unparse_name (MFont *font) #define DEVICE_DELTA(table, size) \ (((size) >= (table).StartSize && (size) <= (table).EndSize) \ - ? (table).DeltaValue[(size) >= (table).StartSize] \ + ? (table).DeltaValue[(size) - (table).StartSize] \ : 0) void -- 1.7.10.4