01-12-2026, 09:37 PM
As Tony mentioned above, you have to make your font call *AFTER* you set the screen or destination
_Font _LoadFont("DejaVuSansMono-Bold.ttf", 14, "monospace")
SCREEN _NEWIMAGE(800, 600, 32)
Such as the above, that's not going to work for you. The SCREEN command will create a completely new screen, with the default _FONT 16 in use. If you're using SCREEN or _DEST to change your display, you'll need to make certain that the proper font is in use after those calls.
If you'd share your actual code, it'd make it a lot easier to point exactly to whatever is wrong and help correct it for you.
_Font _LoadFont("DejaVuSansMono-Bold.ttf", 14, "monospace")
SCREEN _NEWIMAGE(800, 600, 32)
Such as the above, that's not going to work for you. The SCREEN command will create a completely new screen, with the default _FONT 16 in use. If you're using SCREEN or _DEST to change your display, you'll need to make certain that the proper font is in use after those calls.
If you'd share your actual code, it'd make it a lot easier to point exactly to whatever is wrong and help correct it for you.

