aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-10-27 02:23:34 -0300
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-11-07 01:44:08 -0300
commitae7dfa93be1c98f84d13cef9bd1e4d8652fccbdd (patch)
tree98da8cd00887b1f0ba591e2c361851bdf2605e92 /src
parentdeb1b54eed6871c62a4443311d8e8d0351dcac80 (diff)
shader/control_flow: Silence Intellisense cast warnings
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 9c43aa6d6b..1896abc220 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) {
}
Pred GetPredicate(u32 index, bool negated) {
- return static_cast<Pred>(index + (negated ? 8 : 0));
+ return static_cast<Pred>(static_cast<u64>(index) + (negated ? 8ULL : 0ULL));
}
/**