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.
AM2R-TimeTrials/scripts/to_string_lz.gml

7 lines
143 B

/// to_string_lz(number)
// 4 -> "04"
// 11 -> "11"
if (argument0 < 10) {
return "0" + string(argument0);
} else return string(argument0);