mirror of
https://gitlab.com/camelot/kickc.git
synced 2025-08-15 13:27:36 +00:00
Added string encoding ASCII support. Closes #263
This commit is contained in:
@@ -15,7 +15,7 @@ public enum StringEncoding {
|
|||||||
SCREENCODE_UPPER("screencode_upper", "screencode_upper", "su", CharToPetsciiConverter.charToScreenCode_upper),
|
SCREENCODE_UPPER("screencode_upper", "screencode_upper", "su", CharToPetsciiConverter.charToScreenCode_upper),
|
||||||
ASCII("ascii", "ascii", "as", CharToPetsciiConverter.charToAscii),
|
ASCII("ascii", "ascii", "as", CharToPetsciiConverter.charToAscii),
|
||||||
ATASCII("atascii", "ascii", "at", CharToAtasciiConverter.charToAtascii),
|
ATASCII("atascii", "ascii", "at", CharToAtasciiConverter.charToAtascii),
|
||||||
SCREENCODE_ATARI("screencode_atari", null, "sa", CharToAtasciiConverter.charToScreenCodeAtari),
|
SCREENCODE_ATARI("screencode_atari", null, "sa", CharToAtasciiConverter.charToScreenCodeAtari)
|
||||||
;
|
;
|
||||||
|
|
||||||
/** Char value used to encode \xnn chars without a value within the chosen encoding. A char C is encoded as CHAR_SPECIAL_VAL+C */
|
/** Char value used to encode \xnn chars without a value within the chosen encoding. A char C is encoded as CHAR_SPECIAL_VAL+C */
|
||||||
|
Reference in New Issue
Block a user