diff options
author | sanni <[email protected]> | 2019-12-20 16:02:57 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-12-20 16:02:57 +0100 |
commit | e4cab438cad9b42ec3a4b7409061282c59e692e7 (patch) | |
tree | 30f5958f9d7fac6487ef66247e5ff6985db5fecd /Cart_Reader/GBA.ino | |
parent | dd6b805d5bd2f7110e34f7a126e4b6edcc4ed68f (diff) | |
download | cartreader-e4cab438cad9b42ec3a4b7409061282c59e692e7.tar.gz cartreader-e4cab438cad9b42ec3a4b7409061282c59e692e7.zip |
Update GBA.ino
Diffstat (limited to 'Cart_Reader/GBA.ino')
-rw-r--r-- | Cart_Reader/GBA.ino | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Cart_Reader/GBA.ino b/Cart_Reader/GBA.ino index 1a48f50..e7d8866 100644 --- a/Cart_Reader/GBA.ino +++ b/Cart_Reader/GBA.ino @@ -2486,7 +2486,8 @@ void flashRepro_GBA() { println_Msg(F("Intel PC28F256M29"));
}
else {
- println_Msg(romType);
+ print_Msg(F("romType: 0x"));
+ println_Msg(romType, HEX);
print_Error(F("Unknown manufacturer"), true);
}
}
|