mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-27 06:54:15 +01:00
Add files via upload
This commit is contained in:
parent
41efe13dd7
commit
97a233e7ec
@ -4,7 +4,7 @@
|
||||
This project represents a community-driven effort to provide
|
||||
an easy to build and easy to modify cartridge dumper.
|
||||
|
||||
Date: 11.06.2022
|
||||
Date: 12.06.2022
|
||||
Version: 8.5 BETA
|
||||
|
||||
SD lib: https://github.com/greiman/SdFat
|
||||
|
@ -959,7 +959,7 @@ void compare_checksums_GB() {
|
||||
print_Msg(crcStr);
|
||||
|
||||
//Search for CRC32 in file
|
||||
char gamename[50];
|
||||
char gamename[100];
|
||||
char crc_search[9];
|
||||
|
||||
//go to root
|
||||
@ -968,7 +968,7 @@ void compare_checksums_GB() {
|
||||
//Search for same CRC in list
|
||||
while (myFile.available()) {
|
||||
//Read 2 lines (game name and CRC)
|
||||
get_line(gamename, &myFile, 46);
|
||||
get_line(gamename, &myFile, 96);
|
||||
get_line(crc_search, &myFile, 9);
|
||||
skip_line(&myFile); //Skip every 3rd line
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user