diff options
author | liushuyu <liushuyu011@gmail.com> | 2022-01-08 21:42:11 -0700 |
---|---|---|
committer | liushuyu <liushuyu011@gmail.com> | 2022-01-09 17:35:33 -0700 |
commit | 09f4f3f23b5181883c7423a171edd5ec6467df02 (patch) | |
tree | 62b940e8d5532affe487ed43bd97cd2992fe07f6 /src/shader_recompiler/frontend/ir/patch.cpp | |
parent | a1054a093cf32f171bde662655560447b433e3bd (diff) |
logging/log.h: move enum class formatter to a separate file ...
... to common/logging/formatter.h
Diffstat (limited to 'src/shader_recompiler/frontend/ir/patch.cpp')
-rw-r--r-- | src/shader_recompiler/frontend/ir/patch.cpp | 4 |
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 d8730284ed..4c956a970b 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 { u32 GenericPatchIndex(Patch patch) { if (!IsGeneric(patch)) { - throw InvalidArgument("Patch {} is not generic", static_cast<u64>(patch)); + throw InvalidArgument("Patch {} is not generic", patch); } return (static_cast<u32>(patch) - static_cast<u32>(Patch::Component0)) / 4; } u32 GenericPatchElement(Patch patch) { if (!IsGeneric(patch)) { - throw InvalidArgument("Patch {} is not generic", static_cast<u64>(patch)); + throw InvalidArgument("Patch {} is not generic", patch); } return (static_cast<u32>(patch) - static_cast<u32>(Patch::Component0)) % 4; } |