mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-15 01:15:06 +01:00
replace duplicate error string "Can't open file"
This commit is contained in:
parent
ee6a7fe41f
commit
e1bd042d82
@ -151,7 +151,7 @@ uint8_t readData_COL(uint32_t addr) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
void readSegment_COL(uint32_t startaddr, uint32_t endaddr) {
|
||||
void readSegment_COL(uint16_t startaddr, uint32_t endaddr) {
|
||||
for (uint32_t addr = startaddr; addr < endaddr; addr += 512) {
|
||||
for (int w = 0; w < 512; w++) {
|
||||
uint8_t temp = readData_COL(addr + w);
|
||||
@ -166,7 +166,6 @@ void readROM_COL() {
|
||||
|
||||
// RESET ALL CS PINS HIGH (DISABLE)
|
||||
PORTH |= (1 << 3) | (1 << 4) | (1 << 5) | (1 << 6);
|
||||
|
||||
readSegment_COL(0x8000, 0xA000); // 8K
|
||||
if (colsize > 0) {
|
||||
readSegment_COL(0xA000, 0xB000); // +4K = 12K
|
||||
|
@ -1014,7 +1014,7 @@ unsigned long verifySRAM_GBA(unsigned long sramSize, uint32_t pos) {
|
||||
|
||||
return writeErrors;
|
||||
} else {
|
||||
print_Error(F("Can't open file"));
|
||||
print_Error(open_file_STR);
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
@ -1202,7 +1202,7 @@ unsigned long verifyFRAM_GBA(unsigned long framSize) {
|
||||
myFile.close();
|
||||
return writeErrors;
|
||||
} else {
|
||||
print_Error(F("Can't open file"));
|
||||
print_Error(open_file_STR);
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
@ -688,7 +688,7 @@ void writeFlash_GBM() {
|
||||
myFile.close();
|
||||
print_STR(done_STR, 1);
|
||||
} else {
|
||||
print_Error(F("Can't open file"));
|
||||
print_Error(open_file_STR);
|
||||
}
|
||||
}
|
||||
|
||||
@ -902,7 +902,7 @@ void writeMapping_GBM() {
|
||||
myFile.close();
|
||||
print_STR(done_STR, 1);
|
||||
} else {
|
||||
print_Error(F("Can't open file"));
|
||||
print_Error(open_file_STR);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -386,7 +386,7 @@ unsigned long verifyRAM_GPC() {
|
||||
myFile.close();
|
||||
return writeErrors;
|
||||
} else {
|
||||
print_Error(F("Can't open file"));
|
||||
print_Error(open_file_STR);
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
@ -3282,7 +3282,7 @@ void flashRepro_N64() {
|
||||
print_Error(F("failed"));
|
||||
}
|
||||
} else {
|
||||
print_Error(F("Can't open file"));
|
||||
print_Error(open_file_STR);
|
||||
}
|
||||
|
||||
// Prints string out of the common strings array either with or without newline
|
||||
@ -4066,7 +4066,7 @@ void flashGameshark_N64() {
|
||||
print_Error(did_not_verify_STR);
|
||||
}
|
||||
} else {
|
||||
print_Error(F("Can't open file"));
|
||||
print_Error(open_file_STR);
|
||||
}
|
||||
}
|
||||
|
||||
@ -4422,7 +4422,7 @@ void flashXplorer_N64() {
|
||||
print_Error(did_not_verify_STR);
|
||||
}
|
||||
} else {
|
||||
print_Error(F("Can't open file"));
|
||||
print_Error(open_file_STR);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1971,7 +1971,7 @@ unsigned long verifySRAM() {
|
||||
myFile.close();
|
||||
return writeErrors;
|
||||
} else {
|
||||
print_Error(F("Can't open file"));
|
||||
print_Error(open_file_STR);
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
@ -398,7 +398,7 @@ unsigned long verifySRAM_SV() {
|
||||
myFile.close();
|
||||
return writeErrors;
|
||||
} else {
|
||||
print_Error(F("Can't open file"));
|
||||
print_Error(open_file_STR);
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user