diff options
author | Vincent Pelletier <[email protected]> | 2022-10-22 08:25:37 +0000 |
---|---|---|
committer | Vincent Pelletier <[email protected]> | 2022-10-28 05:29:20 +0000 |
commit | a555f2117f54ca50fb57b46f1bda7732a8eed18f (patch) | |
tree | 70bed9311bf74818bc4cfa972456b798085a72ab /Cart_Reader/GBA.ino | |
parent | d81f2c0509e001a77c572200219ceb03563d1b61 (diff) | |
download | cartreader-a555f2117f54ca50fb57b46f1bda7732a8eed18f.tar.gz cartreader-a555f2117f54ca50fb57b46f1bda7732a8eed18f.zip |
All: Resolve all compiler and linker warnings
No functional change intended.
Diffstat (limited to 'Cart_Reader/GBA.ino')
-rw-r--r-- | Cart_Reader/GBA.ino | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Cart_Reader/GBA.ino b/Cart_Reader/GBA.ino index 21ff4f4..e435946 100644 --- a/Cart_Reader/GBA.ino +++ b/Cart_Reader/GBA.ino @@ -1339,6 +1339,7 @@ unsigned long verifySRAM_GBA(unsigned long sramSize, uint32_t pos) { return writeErrors;
} else {
print_Error(F("Can't open file"), false);
+ return 1;
}
}
@@ -1546,6 +1547,7 @@ unsigned long verifyFRAM_GBA(unsigned long framSize) { return writeErrors;
} else {
print_Error(F("Can't open file"), false);
+ return 1;
}
}
|