From a051c3c723e797a1e2f7b3a30c5d7949c7bba410 Mon Sep 17 00:00:00 2001 From: Alula Date: Sat, 4 Apr 2026 00:04:45 +0200 Subject: [PATCH] erpt: document unknown 0x20000 flag --- .../libstratosphere/include/stratosphere/erpt/erpt_types.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/libstratosphere/include/stratosphere/erpt/erpt_types.hpp b/libraries/libstratosphere/include/stratosphere/erpt/erpt_types.hpp index 899de49db..c3b92f62e 100644 --- a/libraries/libstratosphere/include/stratosphere/erpt/erpt_types.hpp +++ b/libraries/libstratosphere/include/stratosphere/erpt/erpt_types.hpp @@ -111,6 +111,7 @@ namespace ams::erpt { struct CreateReportOptionFlag { using SubmitFsInfo = util::BitFlagSet::Flag<0>; + using Unknown0x20000 = util::BitFlagSet::Flag<17>; /* TODO: What is this, it's checked in Reporter::CreateReport or below */ }; using CreateReportOptionFlagSet = util::BitFlagSet;