From c42bf8d85f54af67a3540a762c29c9d0c3e3d8b5 Mon Sep 17 00:00:00 2001 From: HummyPkg Date: Thu, 9 Mar 2017 15:00:46 +0000 Subject: [PATCH] fix missing gap at 0xcc --- charset.h | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/charset.h b/charset.h index c6c8125..31da45f 100644 --- a/charset.h +++ b/charset.h @@ -262,20 +262,21 @@ icc_t iso6937_caron[] = { }; icc_t *iso6937_combined[] = { - iso6937_null, - iso6937_grave, - iso6937_acute, - iso6937_circumflex, - iso6937_tilde, - iso6937_macron, - iso6937_breve, - iso6937_dot, - iso6937_diaeresis, - iso6937_null, - iso6937_ring, - iso6937_cedilla, - iso6937_doubleacute, - iso6937_ogonek, - iso6937_caron + iso6937_null, // c0 + iso6937_grave, // c1 + iso6937_acute, // c2 + iso6937_circumflex, // c3 + iso6937_tilde, // c4 + iso6937_macron, // c5 + iso6937_breve, // c6 + iso6937_dot, // c7 + iso6937_diaeresis, // c8 + iso6937_null, // c9 + iso6937_ring, // ca + iso6937_cedilla, // cb + iso6937_null, // cc + iso6937_doubleacute, // cd + iso6937_ogonek, // ce + iso6937_caron // cf };