mirror of
https://codeberg.org/yuzu-emu/yuzu.git
synced 2025-12-16 12:09:04 +00:00
kernel: Fix compilation with Clang 21
This commit is contained in:
parent
a9cde6f765
commit
b83c049b4c
@ -539,7 +539,7 @@ public:
|
||||
}
|
||||
|
||||
void ClearDpc(DpcFlag flag) {
|
||||
this->GetStackParameters().dpc_flags &= ~static_cast<u8>(flag);
|
||||
this->GetStackParameters().dpc_flags &= static_cast<u8>(~static_cast<u8>(flag));
|
||||
}
|
||||
|
||||
u8 GetDpc() const {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user