diff options
| author | LC <mathew1800@gmail.com> | 2021-01-15 16:19:46 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-15 16:19:46 -0500 |
| commit | 8be9e5b48b5d8ef1c52fab16668dd479ac799f00 (patch) | |
| tree | d38b189961f155c6568344ceb631aa82f35c923d /src/video_core/engines/kepler_memory.h | |
| parent | f728a504aa3aaea48ca86860ad04a975a355a4f5 (diff) | |
| parent | 3ff978aa4f6b9d46179e41c36825eb06e7f8d60c (diff) | |
Merge pull request #5358 from ReinUsesLisp/rename-insert-padding
common/common_funcs: Rename INSERT_UNION_PADDING_{BYTES,WORDS} to _NOINIT
Diffstat (limited to 'src/video_core/engines/kepler_memory.h')
| -rw-r--r-- | src/video_core/engines/kepler_memory.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/engines/kepler_memory.h b/src/video_core/engines/kepler_memory.h index 62483589e..19808a5c6 100644 --- a/src/video_core/engines/kepler_memory.h +++ b/src/video_core/engines/kepler_memory.h @@ -50,7 +50,7 @@ public: union { struct { - INSERT_UNION_PADDING_WORDS(0x60); + INSERT_PADDING_WORDS_NOINIT(0x60); Upload::Registers upload; @@ -62,7 +62,7 @@ public: u32 data; - INSERT_UNION_PADDING_WORDS(0x11); + INSERT_PADDING_WORDS_NOINIT(0x11); }; std::array<u32, NUM_REGS> reg_array; }; |
