You've already forked AM2R-Community-Updates
mirror of
https://github.com/izzy2lost/AM2R-Community-Updates.git
synced 2026-03-10 11:23:35 -07:00
12 lines
334 B
Plaintext
12 lines
334 B
Plaintext
/// 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");
|