So this code will demostrate the problem:
SetVirtualResolution( 500, 1000 )
UseNewDefaultFonts( 1 )
txtSprite = CreateText("test text")
SetTextSize(txtSprite, 10.0)
SetTextPosition(txtSprite, 250, 500)
SetTextColor(txtSprite, 255, 0, 0, 255)
SetViewZoom(5.0)
SetViewOffset(225, 400)
do
Sync()
loop
But if I don't use:
the text becomes clear even with the zoom.
But if I apply some random font I got with LoadFont and SetTextFont, it gets blurry again. What should I know about fonts to make sure it is clear when I zoom in?