diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-04-19 06:25:52 +0200 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-04-22 00:55:44 +0200 |
commit | 0bbae63300fc83505d34f5ca3f9a5be10e42d7c7 (patch) | |
tree | a7a1b11034b64ca73adea93260efe0d98bc30707 /src/video_core/engines | |
parent | Merge pull request #3718 from ReinUsesLisp/better-pipeline-state (diff) | |
download | yuzu-0bbae63300fc83505d34f5ca3f9a5be10e42d7c7.tar yuzu-0bbae63300fc83505d34f5ca3f9a5be10e42d7c7.tar.gz yuzu-0bbae63300fc83505d34f5ca3f9a5be10e42d7c7.tar.bz2 yuzu-0bbae63300fc83505d34f5ca3f9a5be10e42d7c7.tar.lz yuzu-0bbae63300fc83505d34f5ca3f9a5be10e42d7c7.tar.xz yuzu-0bbae63300fc83505d34f5ca3f9a5be10e42d7c7.tar.zst yuzu-0bbae63300fc83505d34f5ca3f9a5be10e42d7c7.zip |
Diffstat (limited to 'src/video_core/engines')
-rw-r--r-- | src/video_core/engines/maxwell_3d.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index 59d5752d2..7bbc6600b 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h @@ -1259,7 +1259,8 @@ public: GPUVAddr LimitAddress() const { return static_cast<GPUVAddr>((static_cast<GPUVAddr>(limit_high) << 32) | - limit_low); + limit_low) + + 1; } } vertex_array_limit[NumVertexArrays]; |