erpt: remove deprecated fields, they didn't actually change IDs, just the mapping between id and name table index

This commit is contained in:
Michael Scire 2023-10-11 17:48:40 -07:00
parent cefedb4055
commit 0569392faf
10 changed files with 719 additions and 1406 deletions

View file

@ -81,7 +81,7 @@ namespace ams::erpt::srv {
oaep.Encrypt(cipher, sizeof(cipher), s_key, sizeof(s_key), salt, sizeof(salt));
}
Formatter::AddField(report, ERPT_FIELD_ID(CipherKey), cipher, sizeof(cipher));
Formatter::AddField(report, FieldId_CipherKey, cipher, sizeof(cipher));
std::memset(s_key, 0, sizeof(s_key));
R_RETURN(Formatter::End(report));