From bc6ed7ac92a525b298f4e6ec443664091070c13c Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Tue, 13 Mar 2018 11:23:03 +0100 Subject: [PATCH] termptygfx: fix stupid bug when printing encircled numbers --- src/bin/termptygfx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/termptygfx.c b/src/bin/termptygfx.c index afb71151..055a47c5 100644 --- a/src/bin/termptygfx.c +++ b/src/bin/termptygfx.c @@ -72,7 +72,7 @@ _termpty_charset_trans(const Termpty *ty, Eina_Unicode g) } else if (g >= '1' && g <= '9') { - g += 0x2460 - '0'; + g += 0x2460 - '1'; } else if (g == '0') g = 0x24ea;