mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-08-25 21:46:38 -05:00
logging/log.h: move enum class formatter to a separate file ...
... to common/logging/formatter.h
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user