Thank you!
Code: Select all
	u32 customFont = VDP_loadFont(&custom_font, DMA);		
	VDP_loadFontData(&customFont, custom_font.numTile, DMA);	
Code: Select all
	TILESET custom_font "gfx/font.png" BEST
	PALETTE custom_pal "gfx/font.png"
Moderator: Stef
Code: Select all
	u32 customFont = VDP_loadFont(&custom_font, DMA);		
	VDP_loadFontData(&customFont, custom_font.numTile, DMA);	
Code: Select all
	TILESET custom_font "gfx/font.png" BEST
	PALETTE custom_pal "gfx/font.png"
Code: Select all
IMAGE custom_font  "gfx/font.png" BESTCode: Select all
VDP_loadFont(custom_font.tileset, DMA);	Code: Select all
	VDP_loadFont(&custom_font, CPU);
Code: Select all
	TILESET custom_font "gfx/font.png" -1
Code: Select all
IMAGE custom_font  "gfx/font.png" BEST NONE