mirror of
https://git.planet-casio.com/Lephenixnoir/fxsdk.git
synced 2024-12-28 04:23:37 +01:00
Merge pull request 'Added a specific charset (extascii) to get access to 256 characters of the ascii table' (#9) from Slyvtt/fxsdk:slyvtt-patch-1 into dev
Reviewed-on: https://gitea.planet-casio.com/Lephenixnoir/fxsdk/pulls/9
This commit is contained in:
commit
6032ce38cf
1 changed files with 3 additions and 1 deletions
|
@ -155,10 +155,12 @@ FX_CHARSETS = {
|
|||
"alnum": [ (ord('A'), 26), (ord('a'), 26), (ord('0'), 10) ],
|
||||
# All printable characters from 0x20 to 0x7e
|
||||
"print": [ (0x20, 95) ],
|
||||
# All 128 ASII characters
|
||||
# All 128 ASCII characters
|
||||
"ascii": [ (0x00, 128) ],
|
||||
# Custom Unicode block intervals
|
||||
"unicode": [],
|
||||
# All 256 ASCII characters (128 first characters as per ascii + 128 extended characters)
|
||||
"extascii": [ (0x00, 256) ],
|
||||
}
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue