both, proportional and non pro. (First half screen is an example of non proportional)
Guess I should have used the same font for both

here's another example on how to use it, once without, once with kerning
LOCAL font1%, font2%
font1 = kf_LoadFont("arial.png", FALSE, -4) // load font without kerning
font2 = kf_LoadFont("arial.png", TRUE,2) // same font with kerning
WHILE TRUE
kf_SetFont(font1)
kf_Print("Example for non proportial font", 0, 0)
kf_Print("They're better used to display numbers", 0, 20)
kf_Print(" 1,000.40", 0, 50)
kf_Print(" 12.443.78", 0, 70)
kf_Print("-----------", 0, 90)
kf_Print(" 13,444.18", 0, 110)
kf_SetFont(font2)
kf_Print("This is an example for a proportional font", 0, 140)
kf_Print("Each character uses differnt space depending on its width", 0, 160)
kf_Print("In most cases this kind of text is better readable", 0, 180)
SHOWSCREEN
WEND
END
[attachment deleted by admin]