-
Notifications
You must be signed in to change notification settings - Fork 2
Strings
Henri Asseily edited this page Jan 23, 2022
·
1 revision
All Deathlord strings use the Deathlord character set. You can find the character set as a .png in the Assets
folder, and in the constant ARRAY_DEATHLORD_CHARSET
in DeathlordHacks.h
. The sprite font is monospaced, 16x16 pixels.
Items of note:
- All strings in memory are obfuscated via EOR with 0xE5. For convenience, the EOR'ed set is in
ARRAY_DEATHLORD_CHARSET_EOR
inDeathlordHacks.h
. - Strings end with the last character having its high bit set.
- The cursor is at 0x7B.
- At 0x5B there's a wide dash that spans the whole glyph, allowing for horizontal lines to be drawn.
- There are regular and inverse glyphs. See the print routines in the code.