diff options
Diffstat (limited to 'render')
-rw-r--r-- | render/render_text.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/render/render_text.c b/render/render_text.c index 75b2c91..2eb5128 100644 --- a/render/render_text.c +++ b/render/render_text.c @@ -10,6 +10,7 @@ void char_width_init (int *char_width) { char_width[','] = 1; char_width['-'] = 3; char_width['.'] = 1; char_width['/'] = 4; char_width['!'] = 1; char_width[':'] = 1; char_width[';'] = 1; + char_width['%'] = 4; char_width['<'] = 3; char_width['>'] = 3; char_width['='] = 4; char_width['I'] = 1; char_width['f'] = 4; char_width['i'] = 1; char_width['j'] = 3; |