diff options
Diffstat (limited to 'src/video_core/shader/track.cpp')
| -rw-r--r-- | src/video_core/shader/track.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/track.cpp b/src/video_core/shader/track.cpp index ea39bca54..face8c943 100644 --- a/src/video_core/shader/track.cpp +++ b/src/video_core/shader/track.cpp | |||
| @@ -41,8 +41,8 @@ std::optional<std::pair<Node, Node>> DecoupleIndirectRead(const OperationNode& o | |||
| 41 | if (operation.GetCode() != OperationCode::UAdd) { | 41 | if (operation.GetCode() != OperationCode::UAdd) { |
| 42 | return std::nullopt; | 42 | return std::nullopt; |
| 43 | } | 43 | } |
| 44 | Node gpr{}; | 44 | Node gpr; |
| 45 | Node offset{}; | 45 | Node offset; |
| 46 | ASSERT(operation.GetOperandsCount() == 2); | 46 | ASSERT(operation.GetOperandsCount() == 2); |
| 47 | for (std::size_t i = 0; i < operation.GetOperandsCount(); i++) { | 47 | for (std::size_t i = 0; i < operation.GetOperandsCount(); i++) { |
| 48 | Node operand = operation[i]; | 48 | Node operand = operation[i]; |