From 30ae62779f1a68c5657ab27bc7e77496ba8a906c Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Mon, 21 Jan 2019 16:44:48 +0200 Subject: [PATCH] Regular spaces will do --- docs/usermanual-getting-started.xml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/usermanual-getting-started.xml b/docs/usermanual-getting-started.xml index 4ec26c619..1f26df8d8 100644 --- a/docs/usermanual-getting-started.xml +++ b/docs/usermanual-getting-started.xml @@ -275,14 +275,14 @@ for (i = 0; i < glyph_count; ++i) { -   glyphid = glyph_info[i].codepoint; -   x_offset = glyph_pos[i].x_offset / 64.0; -   y_offset = glyph_pos[i].y_offset / 64.0; -   x_advance = glyph_pos[i].x_advance / 64.0; -   y_advance = glyph_pos[i].y_advance / 64.0; -   draw_glyph(glyphid, cursor_x + x_offset, cursor_y + y_offset); -   cursor_x += x_advance; -   cursor_y += y_advance; + glyphid = glyph_info[i].codepoint; + x_offset = glyph_pos[i].x_offset / 64.0; + y_offset = glyph_pos[i].y_offset / 64.0; + x_advance = glyph_pos[i].x_advance / 64.0; + y_advance = glyph_pos[i].y_advance / 64.0; + draw_glyph(glyphid, cursor_x + x_offset, cursor_y + y_offset); + cursor_x += x_advance; + cursor_y += y_advance; }