summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/video_core/shader/control_flow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/control_flow.cpp b/src/video_core/shader/control_flow.cpp
index 9c43aa6d6..1896abc22 100644
--- a/src/video_core/shader/control_flow.cpp
+++ b/src/video_core/shader/control_flow.cpp
@@ -109,7 +109,7 @@ BlockInfo& CreateBlockInfo(CFGRebuildState& state, u32 start, u32 end) {
109} 109}
110 110
111Pred GetPredicate(u32 index, bool negated) { 111Pred GetPredicate(u32 index, bool negated) {
112 return static_cast<Pred>(index + (negated ? 8 : 0)); 112 return static_cast<Pred>(static_cast<u64>(index) + (negated ? 8ULL : 0ULL));
113} 113}
114 114
115/** 115/**