Here is the exact code:
#include "DarkGDK.h"
#include "text.h"
void DarkGDK(void)
{
dbSyncOn();
dbSyncRate(0);
InitText();
SetFont(1, "Impact", 64, 0, 0);
while (LoopGDK())
{
if (dbEscapeKey())
return;
StartText();
AAText(1, 10, 10, ALIGN_LEFT, "Hello World!");
EndText();
dbSync();
}
}
and here is the result:
other fonts give similar aliasing, and using italics always cuts off the sides of the characters. I cant possibly imagine this being a hardware problem, it MUST be a software problem, and IMHO its the source code of text.h and text.cpp from 3 years ago. Surely a newer version is available?