diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2023-02-03 06:10:10 +0100 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2023-02-03 06:12:16 +0100 |
commit | 979e4d9950bc7241460524a06e09e87147904d1a (patch) | |
tree | 665e83a9b6a747f25b30de50350abec1f68d110f | |
parent | Revert "Merge pull request #9718 from yuzu-emu/revert-9508-hle-ipc-buffer-span" (diff) | |
download | yuzu-979e4d9950bc7241460524a06e09e87147904d1a.tar yuzu-979e4d9950bc7241460524a06e09e87147904d1a.tar.gz yuzu-979e4d9950bc7241460524a06e09e87147904d1a.tar.bz2 yuzu-979e4d9950bc7241460524a06e09e87147904d1a.tar.lz yuzu-979e4d9950bc7241460524a06e09e87147904d1a.tar.xz yuzu-979e4d9950bc7241460524a06e09e87147904d1a.tar.zst yuzu-979e4d9950bc7241460524a06e09e87147904d1a.zip |
-rw-r--r-- | src/core/hle/service/filesystem/fsp_srv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp index cab44bf9c..447d624e1 100644 --- a/src/core/hle/service/filesystem/fsp_srv.cpp +++ b/src/core/hle/service/filesystem/fsp_srv.cpp @@ -1083,7 +1083,7 @@ void FSP_SRV::GetGlobalAccessLogMode(Kernel::HLERequestContext& ctx) { } void FSP_SRV::OutputAccessLogToSdCard(Kernel::HLERequestContext& ctx) { - const auto raw = ctx.ReadBuffer(); + const auto raw = ctx.ReadBufferCopy(); auto log = Common::StringFromFixedZeroTerminatedBuffer( reinterpret_cast<const char*>(raw.data()), raw.size()); |