diff options
| author | 2022-01-08 21:42:11 -0700 | |
|---|---|---|
| committer | 2022-01-09 17:35:33 -0700 | |
| commit | 09f4f3f23b5181883c7423a171edd5ec6467df02 (patch) | |
| tree | 62b940e8d5532affe487ed43bd97cd2992fe07f6 /src/shader_recompiler/frontend/ir/patch.cpp | |
| parent | cmake: upgrade Conan package fmt to 8.1.1 ... (diff) | |
| download | yuzu-09f4f3f23b5181883c7423a171edd5ec6467df02.tar.gz yuzu-09f4f3f23b5181883c7423a171edd5ec6467df02.tar.xz yuzu-09f4f3f23b5181883c7423a171edd5ec6467df02.zip | |
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 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 | ||
| 14 | u32 GenericPatchIndex(Patch patch) { | 14 | u32 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 | ||
| 21 | u32 GenericPatchElement(Patch patch) { | 21 | u32 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 | } |