Fix Number issue
This commit is contained in:
parent
2f76e7a71e
commit
25d9f9caa0
|
@ -13,7 +13,7 @@
|
|||
#endif //JABYENGINE_PAL
|
||||
|
||||
// | ! | " | # | $ | % | & | ' | ( | ) | * | + | , | - | . | / | 0 |
|
||||
// | 8149 | 8168 | 8194 | 8190 | 8193 | 8195 | 8166 | 8169 | 816A | 8196 | 817B | 8143 | 817C | 8144 | 815E | 8250 |
|
||||
// | 8149 | 8168 | 8194 | 8190 | 8193 | 8195 | 8166 | 8169 | 816A | 8196 | 817B | 8143 | 817C | 8144 | 815E | 8240 |
|
||||
// | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | : | ; | < | = | > | ? | @ |
|
||||
// | 8251 | 8252 | 8253 | 8254 | 8255 | 8256 | 8257 | 8258 | 8259 | 8146 | 8147 | 8183 | 8181 | 8184 | 8148 | 8197 |
|
||||
// | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P |
|
||||
|
@ -135,8 +135,10 @@ namespace JabyEngine {
|
|||
|
||||
// base: 0x8200
|
||||
static const RangeChar AlphaNumeric[] = {
|
||||
// { 0 - 9 }
|
||||
{{0x50, 15}, 10},
|
||||
// { 0 }
|
||||
{{0x4F, 15}, 1},
|
||||
// { 1 - 9 }
|
||||
{{0x50, 16}, 9},
|
||||
// { A - Z }
|
||||
{{0x60, 32}, 26},
|
||||
// { a - z }
|
||||
|
|
Loading…
Reference in New Issue