diff options
| author | Liam <byteslice@airmail.cc> | 2024-01-30 20:13:48 -0500 | 
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2024-01-30 20:13:48 -0500 | 
| commit | 817d916233adcfb26814fde677e71d9825ce614c (patch) | |
| tree | 4c598c527d2c7d89136ffa9b7453cca90f1b8de5 | |
| parent | 8e0a40434c8cc1de7b7262c0439380e5eca3e42a (diff) | |
am: push storage from error applet with non-zero size
| -rw-r--r-- | src/core/hle/service/am/frontend/applet_error.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/core/hle/service/am/frontend/applet_error.cpp b/src/core/hle/service/am/frontend/applet_error.cpp index d6db345b6..b97a5f3ea 100644 --- a/src/core/hle/service/am/frontend/applet_error.cpp +++ b/src/core/hle/service/am/frontend/applet_error.cpp @@ -207,7 +207,7 @@ void Error::Execute() {  void Error::DisplayCompleted() {      complete = true; -    PushOutData(std::make_shared<IStorage>(system, std::vector<u8>())); +    PushOutData(std::make_shared<IStorage>(system, std::vector<u8>(0x1000)));      Exit();  } | 
