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-The-Horde-Multitroid/scripts/scrConsoleCleanup.gml

11 lines
244 B

//MAKE SURE YOU USE THIS FUNCTION SO YOUR GAME DOESN'T HAVE MEMORY LEAKS
if(ds_exists(ConsoleHistory, ds_type_list)){
ds_list_destroy(ConsoleHistory);
}
if(ds_exists(ConsoleCommands, ds_type_map)){
ds_map_destroy(ConsoleCommands);
}