diff options
author | namkazy <nam.kazt.91@gmail.com> | 2020-03-22 07:41:16 +0100 |
---|---|---|
committer | namkazy <nam.kazt.91@gmail.com> | 2020-03-22 07:41:16 +0100 |
commit | f66743cd0cd07e811b5a4340b6412d288b448c9c (patch) | |
tree | bfa057ee4fbb7df81c9f28bf69012cb9197f711d /src/video_core | |
parent | maxwell_3d: init shadow_state (diff) | |
download | yuzu-f66743cd0cd07e811b5a4340b6412d288b448c9c.tar yuzu-f66743cd0cd07e811b5a4340b6412d288b448c9c.tar.gz yuzu-f66743cd0cd07e811b5a4340b6412d288b448c9c.tar.bz2 yuzu-f66743cd0cd07e811b5a4340b6412d288b448c9c.tar.lz yuzu-f66743cd0cd07e811b5a4340b6412d288b448c9c.tar.xz yuzu-f66743cd0cd07e811b5a4340b6412d288b448c9c.tar.zst yuzu-f66743cd0cd07e811b5a4340b6412d288b448c9c.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/engines/maxwell_3d.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index 17119beda..d24c9f657 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h @@ -1276,7 +1276,9 @@ public: }; std::array<u32, NUM_REGS> reg_array; }; - } regs{}; + }; + + Regs regs{}; /// Store temporary hw register values, used by some calls to restore state after a operation Regs shadow_state; |