diff options
| author | namkazy <nam.kazt.91@gmail.com> | 2020-03-22 11:35:26 +0700 |
|---|---|---|
| committer | namkazy <nam.kazt.91@gmail.com> | 2020-03-22 11:35:26 +0700 |
| commit | 7051dc19020c4cc510e5ae0b490d037ae1ad9bfe (patch) | |
| tree | 19371ffffa3f3e73a519bfce16415bd9480d9bdf /src/video_core/engines/maxwell_3d.cpp | |
| parent | 01af036c1f653e3e25ab270d3b2a3e33849da0fd (diff) | |
maxwell_3d: update comments for shadow ram usage
Diffstat (limited to 'src/video_core/engines/maxwell_3d.cpp')
| -rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index 96cbe374c..7a3e21c6b 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp @@ -160,7 +160,7 @@ void Maxwell3D::CallMethod(const GPU::MethodCall& method_call) { ASSERT_MSG(method < Regs::NUM_REGS, "Invalid Maxwell3D register, increase the size of the Regs structure"); - // Keep track of the register value in shadow_regs when requested. + // Keep track of the register value in shadow_state when requested. if (regs.shadow_ram_control == Regs::ShadowRamControl::Track || regs.shadow_ram_control == Regs::ShadowRamControl::TrackWithFilter) { shadow_state.reg_array[method] = method_call.argument; |
