diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2024-02-09 02:40:06 +0100 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2024-02-09 02:40:06 +0100 |
commit | 03a23c037a37c841a4893ea1fd491b1e5a72f615 (patch) | |
tree | 1226207c4c60f91405966c27a79ac219b55a48b4 | |
parent | Merge pull request #12903 from liamwhite/const-offset (diff) | |
download | yuzu-03a23c037a37c841a4893ea1fd491b1e5a72f615.tar yuzu-03a23c037a37c841a4893ea1fd491b1e5a72f615.tar.gz yuzu-03a23c037a37c841a4893ea1fd491b1e5a72f615.tar.bz2 yuzu-03a23c037a37c841a4893ea1fd491b1e5a72f615.tar.lz yuzu-03a23c037a37c841a4893ea1fd491b1e5a72f615.tar.xz yuzu-03a23c037a37c841a4893ea1fd491b1e5a72f615.tar.zst yuzu-03a23c037a37c841a4893ea1fd491b1e5a72f615.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/cmif_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/cmif_types.h b/src/core/hle/service/cmif_types.h index 84f4c2456..325304d5c 100644 --- a/src/core/hle/service/cmif_types.h +++ b/src/core/hle/service/cmif_types.h @@ -262,7 +262,7 @@ class OutLargeData { public: static_assert(std::is_trivially_copyable_v<T>, "LargeData type must be trivially copyable"); static_assert((A & BufferAttr_In) == 0, "OutLargeData attr must not be In"); - static constexpr BufferAttr Attr = static_cast<BufferAttr>(A | BufferAttr_In | BufferAttr_FixedSize); + static constexpr BufferAttr Attr = static_cast<BufferAttr>(A | BufferAttr_Out | BufferAttr_FixedSize); using Type = T; /* implicit */ OutLargeData(const OutLargeData& t) : raw(t.raw) {} |