Can't get it to work with Lite-C
Code:
#include <acknex.h>
function InstallFont(MyFont);
function DeinstallFont(MyFont);
function ShowMyMessage(MyMessage);
STRING* tt_font = "HOURPHOT.TTF";
TEXT* TT_text =
{
layer=1;
pos_x=25;
pos_y=25;
string="hello world";
font=tt_font;
flags=VISIBLE;
}
function main()
{
fps_max = 60;
InstallFont(tt_font);
while(1)
{
wait(1);
}
}