Hi there, what is causing the font to look like this? I'm using Pixica with recommended font size 16


here's my settings below using 1.6.0

for reference here my code
function scr_draw_text(xx ,yy, str, font = fnt_ui_caption, col = c_black, halign = fa_left, valign = fa_top, wid = 1300, scale = 1, angle = 0, alpha = 1){
draw_set_font(font);
draw_set_color(col);
draw_set_halign(halign);
draw_set_valign(valign);
draw_text_ext_transformed_colour(round(xx), round(yy), str, -1, wid, scale, scale, angle, col, col, col, col, 1);
// reset
draw_set_color(c_white);
draw_set_halign(fa_left);
draw_set_valign(fa_top);
}