LoginLogin
Nintendo shutting down 3DS + Wii U online services, see our post

Fonts in sb4

Root / Programming Questions / [.]

VG_LoverCreated:
Does anyone know how to load fonts in sb4. The closest I could get is
LOADG "(FONT FILE)",0
and that gives me this

You should be able to load it onto the font page, maybe LOAD file$,6 or something. I haven't used SB4 though.
LOADG file$, #GRPF
(#GRPF is a constant with a value of 5)

Alright I'll give it a try when I can, and hopefully it'll work

By
file$
you meant the file name then a dollar sign, right

file$ is a string with the filename
LOADG "FILENAME",#GRPF

FILE$="FILENAME"
LOADG FILE$,#GRPF
etc.

file$ is a string with the filename
LOADG "FILENAME",#GRPF

FILE$="FILENAME"
LOADG FILE$,#GRPF
etc.
Ok, so I think I know what you mean, but it still wont work for some reason