diff --git a/core/model3.c b/core/model3.c index 5d74a6e..539ea4f 100644 --- a/core/model3.c +++ b/core/model3.c @@ -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); } }