This commit is contained in:
Ville Linde 2006-07-18 01:02:45 +00:00
parent ae99e68715
commit d1cad8cd68

View file

@ -1426,7 +1426,7 @@ void model3_load_bram(void)
if(load_file(string, bram, 256*1024))
{
message(0, "Can't load Backup RAM from file, creating a new file.");
memset(bram, 0xFF, 256*1024);
memset(bram, 0x00, 256*1024);
save_file(string, bram, 256*1024, 0);
}
}