Quiest
I like turtles!
Okay, this first:
Its just an example of how I basically use 2 diff. fonts at the same time.
No, font1 is, lets say, yellow with red shadow, and font2 is white with black shadow.
But font2 is not displayed, correct, it just uses the same colors as font1.
(16bit mode, btw)
Is this normal, or am I doing something wrong?
Code:
process uglyfontcode();
private
font1;
font2;
begin
font1=load_fnt("font1.fnt");
font2=load_fnt("font2.fnt");
write(font1,100,100,0, "BLABLABLA");
write(font2,100,110,0, "Another BLA");
loop
frame;
end;
end;
Its just an example of how I basically use 2 diff. fonts at the same time.
No, font1 is, lets say, yellow with red shadow, and font2 is white with black shadow.
But font2 is not displayed, correct, it just uses the same colors as font1.
(16bit mode, btw)
Is this normal, or am I doing something wrong?