So, I need my game to work in many different languages, and one of them is portuguese, which includes characters like Ç, Ã and stuff like that.
I know that the very first thing I need to do is to set up a font within a range that supports those characters, and I did it.
But when I execute a simple line such as
But the text does not show the special characters in the screen...
Special Characters not being drawn ( even in the range)
I know that the very first thing I need to do is to set up a font within a range that supports those characters, and I did it.

But when I execute a simple line such as
Code:
draw_set_font( font_custom);
draw_text( x, y, "posição");
Special Characters not being drawn ( even in the range)