diff options
| author | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-12-25 14:31:53 -0500 |
|---|---|---|
| committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-12-28 18:46:54 -0500 |
| commit | a1490d77ace26ec01a60541239d9a8524b88fcec (patch) | |
| tree | 8da577293325c3f585a4d031288339885ca26a65 /src/core/hle/service/fatal/fatal.cpp | |
| parent | 59c0f85407d1d5d80fb88e5a6b0bab8d1abf438f (diff) | |
hle_ipc: Rename ReadBufferSpan to ReadBuffer
Diffstat (limited to 'src/core/hle/service/fatal/fatal.cpp')
| -rw-r--r-- | src/core/hle/service/fatal/fatal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/fatal/fatal.cpp b/src/core/hle/service/fatal/fatal.cpp index ff896ea10..27675615b 100644 --- a/src/core/hle/service/fatal/fatal.cpp +++ b/src/core/hle/service/fatal/fatal.cpp @@ -152,7 +152,7 @@ void Module::Interface::ThrowFatalWithCpuContext(Kernel::HLERequestContext& ctx) IPC::RequestParser rp(ctx); const auto error_code = rp.Pop<Result>(); const auto fatal_type = rp.PopEnum<FatalType>(); - const auto fatal_info = ctx.ReadBufferSpan(); + const auto fatal_info = ctx.ReadBuffer(); FatalInfo info{}; ASSERT_MSG(fatal_info.size() == sizeof(FatalInfo), "Invalid fatal info buffer size!"); |
