summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/frontend/ir/patch.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/frontend/ir/patch.cpp b/src/shader_recompiler/frontend/ir/patch.cpp
index d8730284e..4c956a970 100644
--- a/src/shader_recompiler/frontend/ir/patch.cpp
+++ b/src/shader_recompiler/frontend/ir/patch.cpp
@@ -13,14 +13,14 @@ bool IsGeneric(Patch patch) noexcept {
13 13
14u32 GenericPatchIndex(Patch patch) { 14u32 GenericPatchIndex(Patch patch) {
15 if (!IsGeneric(patch)) { 15 if (!IsGeneric(patch)) {
16 throw InvalidArgument("Patch {} is not generic", static_cast<u64>(patch)); 16 throw InvalidArgument("Patch {} is not generic", patch);
17 } 17 }
18 return (static_cast<u32>(patch) - static_cast<u32>(Patch::Component0)) / 4; 18 return (static_cast<u32>(patch) - static_cast<u32>(Patch::Component0)) / 4;
19} 19}
20 20
21u32 GenericPatchElement(Patch patch) { 21u32 GenericPatchElement(Patch patch) {
22 if (!IsGeneric(patch)) { 22 if (!IsGeneric(patch)) {
23 throw InvalidArgument("Patch {} is not generic", static_cast<u64>(patch)); 23 throw InvalidArgument("Patch {} is not generic", patch);
24 } 24 }
25 return (static_cast<u32>(patch) - static_cast<u32>(Patch::Component0)) % 4; 25 return (static_cast<u32>(patch) - static_cast<u32>(Patch::Component0)) % 4;
26} 26}