From d1cad8cd68979514a76b4a7d8d5d9ba5d29c03f4 Mon Sep 17 00:00:00 2001 From: Ville Linde Date: Tue, 18 Jul 2006 01:02:45 +0000 Subject: [PATCH] --- core/model3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }