• Hello [name]! Thanks for joining the GMC. Before making any posts in the Tech Support forum, can we suggest you read the forum rules? These are simple guidelines that we ask you to follow so that you can get the best help possible for your issue.

Windows Bug with drawing text

R

Ramaraunt

Guest
Whenever I use the draw_text function it only draws the first letter. Is this a bug?
 
R

Ramaraunt

Guest
draw_set_halign(fa_center);
draw_set_valign(fa_middle);
draw_set_color(c_red);
draw_set_font(fnt_courier_prime_code);

draw_set_alpha(alpha1);
draw_text(text1x,text1y,text1);

draw_set_alpha(alpha2);
draw_text(text2x,text2y,text2);
 

Mike

nobody important
GMC Elder
Working fine here. Can you try increasing the size of the font, and making it "Bold" just in case the font isn't generating nicely.
 
Top