erpt: revert GetReportSizeMax to not potentially break old firmwares

This commit is contained in:
Alula 2026-04-01 05:46:04 +02:00
parent 32bb6b17ab
commit 6acdc05c89
No known key found for this signature in database
GPG Key ID: 3E00485503A1D8BA

View File

@ -101,7 +101,7 @@ namespace ams::erpt::srv {
Result ManagerImpl::GetReportSizeMax(ams::sf::Out<u32> out) {
/* TODO: Where is this size defined? */
constexpr size_t ReportSizeMax = 0x35D3D;
constexpr size_t ReportSizeMax = 0x3FF4F;
*out = ReportSizeMax;
R_SUCCEED();
}