From 83b53b47bd5317973e22a4081a7311027bcc5c0c Mon Sep 17 00:00:00 2001 From: jiyunomegami Date: Sun, 12 Jul 2020 21:14:58 +0900 Subject: [PATCH] Correct comment about segaSram16bit 2 --- Cart_Reader/MD.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cart_Reader/MD.ino b/Cart_Reader/MD.ino index 62c397a..a8fd4a4 100644 --- a/Cart_Reader/MD.ino +++ b/Cart_Reader/MD.ino @@ -150,7 +150,7 @@ void mdLoadConf() { // [segaSram16bit] 1 ; 0=no, 1=yes, 2=y+large // 0: Output each byte once. Not supported by most emulators. // 1: Duplicate each byte. Usable by Kega Fusion. - // 2: Output everything from 0x200000 to 0x20FFFF. Like an everdrive srm file. + // 2: Duplicate each byte. Pad with 0xFF so that the file size is 64KB. segaSram16bit = atoi(value); if (segaSram16bit != 0 && segaSram16bit != 1 && segaSram16bit != 2) { segaSram16bit = DEFAULT_VALUE_segaSram16bit;