Add message to tell people when their signature patches are bad

This commit is contained in:
Huntereb 2020-09-20 21:42:34 -04:00
parent 9f4e322c3a
commit edcbbbda54

View File

@ -118,6 +118,8 @@ namespace nx::fs
if (rc == 0x236e02)
errorMsg = "File " + path + " is unreadable! You may have a bad dump, fs_mitm may need to be removed, or your firmware version may be too low to decrypt it.";
else if (rc == 0x234c02)
errorMsg = "Failed to open filesystem. Make sure your signature patches are up to date and set up properly!";
ASSERT_OK(rc, errorMsg.c_str());
}