Hey everyone,

I have a small logo that I want to show in my game underneath the title.
Is there a way to load the logo in the script editor instead of having to add the logo to the actual level?
I thought something like that:

FONT* varLogo = "logo.bmp";

TEXT* logo =
{
pos_x = 0;
pox_y = 0;
font = varLogo;
flags = VISIBLE;
}

However is giving me the following error:

Range over font size.

Thanks in advance,

Doug