Browse Source
Merge pull request #12967 from german77/let_me_out
service: Fix OutLargeData attributes
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
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) {} |
|
|
|
|