From 5fcdbb80f03e445d1b1f9206d31c1d5afe6fb4ca Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 18 May 2013 13:34:36 +0100 Subject: Try to avoid the split point jumping around when it occurs exactly on the boundary requested --- amiga/font.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'amiga') diff --git a/amiga/font.c b/amiga/font.c index e624d5677..5ec52032f 100755 --- a/amiga/font.c +++ b/amiga/font.c @@ -341,15 +341,14 @@ bool nsfont_split(const plot_font_style_t *fstyle, } } - tx += tempx; - if ((x < tx) && (*char_offset != 0)) { /* Reached available width, and a space was found; * split there. */ free(outf16); return true; } - + + tx += tempx; utf16 = utf16next; utf8_pos = utf8_next(string, length, utf8_pos); } -- cgit v1.2.3