summaryrefslogtreecommitdiff
path: root/riscos/font.c
diff options
context:
space:
mode:
Diffstat (limited to 'riscos/font.c')
-rw-r--r--riscos/font.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/riscos/font.c b/riscos/font.c
index ef2ecb5a6..c56c85ad7 100644
--- a/riscos/font.c
+++ b/riscos/font.c
@@ -208,8 +208,8 @@ struct font_data *nsfont_open(struct font_set *set, struct css_style *style)
assert(style != NULL);
if (style->font_size.size == CSS_FONT_SIZE_LENGTH)
- size = len(&style->font_size.value.length, style) *
- 72.0 / 90.0 * 16;
+ size = (int)(css_len2px(&style->font_size.value.length,
+ style) * 72.0 / 90.0 * 16.);
if (size < option_font_min_size * 1.6)
size = option_font_min_size * 1.6;
if (1600 < size)