From 0ca6590c3f121e49a0449ede1035825edf909d38 Mon Sep 17 00:00:00 2001 From: dborth Date: Sun, 17 Aug 2008 19:33:55 +0000 Subject: [PATCH] fix 'black screen' bug --- source/ngc/sram.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ngc/sram.cpp b/source/ngc/sram.cpp index 4cf118d..2d58298 100644 --- a/source/ngc/sram.cpp +++ b/source/ngc/sram.cpp @@ -92,7 +92,7 @@ prepareEXPORTsavedata () ClearSaveBuffer (); /*** Copy in the sramcomments ***/ - sprintf (sramcomment[1], "%s", Memory.ROMFilename); + sprintf (sramcomment[1], "%s", Memory.ROMName); memcpy (savebuffer + offset, sramcomment, 64); offset += 64;