diff options
author | Liam <byteslice@airmail.cc> | 2024-02-07 21:06:15 +0100 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2024-02-07 21:06:15 +0100 |
commit | fee263c59c2eaf987f750768548f1cc6aa491d3c (patch) | |
tree | a52053ea84facff57155fa08e078082bde15a446 /src/core/hle/service/cmif_serialization.h | |
parent | Merge pull request #12883 from FernandoS27/memory_manager_mem (diff) | |
download | yuzu-fee263c59c2eaf987f750768548f1cc6aa491d3c.tar yuzu-fee263c59c2eaf987f750768548f1cc6aa491d3c.tar.gz yuzu-fee263c59c2eaf987f750768548f1cc6aa491d3c.tar.bz2 yuzu-fee263c59c2eaf987f750768548f1cc6aa491d3c.tar.lz yuzu-fee263c59c2eaf987f750768548f1cc6aa491d3c.tar.xz yuzu-fee263c59c2eaf987f750768548f1cc6aa491d3c.tar.zst yuzu-fee263c59c2eaf987f750768548f1cc6aa491d3c.zip |
Diffstat (limited to 'src/core/hle/service/cmif_serialization.h')
-rw-r--r-- | src/core/hle/service/cmif_serialization.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/cmif_serialization.h b/src/core/hle/service/cmif_serialization.h index e985fe317..f24682c34 100644 --- a/src/core/hle/service/cmif_serialization.h +++ b/src/core/hle/service/cmif_serialization.h @@ -280,7 +280,7 @@ void ReadInArgument(bool is_domain, CallArguments& args, const u8* raw_data, HLE u32 value{}; std::memcpy(&value, raw_data + ArgOffset, ArgSize); - std::get<ArgIndex>(args) = ctx.GetDomainHandler<ArgType::Type>(value - 1); + std::get<ArgIndex>(args) = ctx.GetDomainHandler<typename ArgType::element_type>(value - 1); return ReadInArgument<MethodArguments, CallArguments, ArgAlign, ArgEnd, HandleIndex, InBufferIndex, OutBufferIndex, true, ArgIndex + 1>(is_domain, args, raw_data, ctx, temp); } else if constexpr (ArgumentTraits<ArgType>::Type == ArgumentType::InCopyHandle) { |