diff options
author | Lioncash <mathew1800@gmail.com> | 2020-04-16 06:16:04 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-04-16 06:16:06 +0200 |
commit | cd2a12e78f0f728f713de3a3994159e3077982a4 (patch) | |
tree | c3eaed10111a80bdaa4b7bf0c1a4801ea7036347 /src | |
parent | Merge pull request #3612 from ReinUsesLisp/red (diff) | |
download | yuzu-cd2a12e78f0f728f713de3a3994159e3077982a4.tar yuzu-cd2a12e78f0f728f713de3a3994159e3077982a4.tar.gz yuzu-cd2a12e78f0f728f713de3a3994159e3077982a4.tar.bz2 yuzu-cd2a12e78f0f728f713de3a3994159e3077982a4.tar.lz yuzu-cd2a12e78f0f728f713de3a3994159e3077982a4.tar.xz yuzu-cd2a12e78f0f728f713de3a3994159e3077982a4.tar.zst yuzu-cd2a12e78f0f728f713de3a3994159e3077982a4.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/shader/decode/shift.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/video_core/shader/decode/shift.cpp b/src/video_core/shader/decode/shift.cpp index 3b391d3e6..d4ffa8014 100644 --- a/src/video_core/shader/decode/shift.cpp +++ b/src/video_core/shader/decode/shift.cpp @@ -23,7 +23,6 @@ Node IsFull(Node shift) { } Node Shift(OperationCode opcode, Node value, Node shift) { - Node is_full = Operation(OperationCode::LogicalIEqual, shift, Immediate(32)); Node shifted = Operation(opcode, move(value), shift); return Operation(OperationCode::Select, IsFull(move(shift)), Immediate(0), move(shifted)); } |