diff options
author | Billy Laws <blaws05@gmail.com> | 2020-07-26 23:26:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-26 23:26:29 +0200 |
commit | f490b4545db538b49392dcfa98d7e5219a225284 (patch) | |
tree | fd64bb3f416061806ff206c003ac34bc7ce1910e /src | |
parent | Merge pull request #4426 from lioncash/lock (diff) | |
download | yuzu-f490b4545db538b49392dcfa98d7e5219a225284.tar yuzu-f490b4545db538b49392dcfa98d7e5219a225284.tar.gz yuzu-f490b4545db538b49392dcfa98d7e5219a225284.tar.bz2 yuzu-f490b4545db538b49392dcfa98d7e5219a225284.tar.lz yuzu-f490b4545db538b49392dcfa98d7e5219a225284.tar.xz yuzu-f490b4545db538b49392dcfa98d7e5219a225284.tar.zst yuzu-f490b4545db538b49392dcfa98d7e5219a225284.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/gpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index 19a34c402..ebfc7b0c7 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -252,7 +252,7 @@ public: const Tegra::DmaPusher& DmaPusher() const; struct Regs { - static constexpr size_t NUM_REGS = 0x100; + static constexpr size_t NUM_REGS = 0x40; union { struct { @@ -271,7 +271,7 @@ public: u32 semaphore_trigger; INSERT_UNION_PADDING_WORDS(0xC); - // The puser and the puller share the reference counter, the pusher only has read + // The pusher and the puller share the reference counter, the pusher only has read // access u32 reference_count; INSERT_UNION_PADDING_WORDS(0x5); |