From 4d5cde3f7bb1ba60eba2baa393520b9fbc6e6e1e Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Fri, 3 Jan 2020 14:17:32 -0800 Subject: [PATCH] ams.bpc: fix report serialization --- libraries/libstratosphere/source/ams/ams_bpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/libstratosphere/source/ams/ams_bpc.c b/libraries/libstratosphere/source/ams/ams_bpc.c index 84c1d4763..064100494 100644 --- a/libraries/libstratosphere/source/ams/ams_bpc.c +++ b/libraries/libstratosphere/source/ams/ams_bpc.c @@ -40,7 +40,7 @@ Result amsBpcRebootToFatalError(void *ctx) { /* Note: this takes in an sts::ams::FatalErrorContext. */ /* static_assert(sizeof() == 0x350) is done at type definition. */ return serviceDispatch(&g_amsBpcSrv, 65000, - .buffer_attrs = { SfBufferAttr_Out | SfBufferAttr_HipcMapAlias | SfBufferAttr_FixedSize }, + .buffer_attrs = { SfBufferAttr_In | SfBufferAttr_HipcMapAlias | SfBufferAttr_FixedSize }, .buffers = { { ctx, 0x350 } }, ); }