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.
12 lines
334 B
12 lines
334 B
/// erase_save()
|
|
filename = "save" + string(global.saveslot + 1);
|
|
file_delete(filename);
|
|
with (oMenuSaveSlot) if (slot == global.saveslot) {
|
|
saveexists = 0;
|
|
smode = 0;
|
|
}
|
|
saveslot_flash(global.saveslot);
|
|
|
|
file_delete("random" + string(global.saveslot + 1) + ".ini");
|
|
file_delete("save" + string(global.saveslot + 1) + ".dat");
|