You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
386 B
10 lines
386 B
draw_set_font(global.fontGUI2)
|
|
draw_set_halign(fa_center)
|
|
if (os_type != os_android)
|
|
draw_cool_text(x, y, pr_start_str, c_white, c_black, c_green, image_alpha)
|
|
else if (global.joydetected == 0)
|
|
draw_cool_text(x, y, to_start_str, c_white, c_black, c_green, image_alpha)
|
|
else
|
|
draw_cool_text(x, y, pr_start_str, c_white, c_black, c_green, image_alpha)
|
|
draw_set_halign(fa_left)
|