Skip to content

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.

Deathlord Charset

Items of note:

  1. All strings in memory are obfuscated via EOR with 0xE5. For convenience, the EOR'ed set is in ARRAY_DEATHLORD_CHARSET_EOR in DeathlordHacks.h.
  2. Strings end with the last character having its high bit set.
  3. The cursor is at 0x7B.
  4. At 0x5B there's a wide dash that spans the whole glyph, allowing for horizontal lines to be drawn.
  5. There are regular and inverse glyphs. See the print routines in the code.
Clone this wiki locally