mirror of
https://git.eden-emu.dev/archive/citron
synced 2026-04-18 10:40:48 -04:00
fix: Strict Clang Rule
Signed-off-by: Collecting <collecting@noreply.localhost>
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
||||||
|
// SPDX-FileCopyrightText: 2025 citron Emulator Project
|
||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
@@ -539,7 +540,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
void ClearDpc(DpcFlag flag) {
|
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 {
|
u8 GetDpc() const {
|
||||||
|
|||||||
Reference in New Issue
Block a user