mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 07:29:59 +01:00
a32_interface: fix copy paste error
This commit is contained in:
parent
e476fad5a2
commit
282bd3ad5c
@ -130,7 +130,7 @@ struct Jit::Impl final {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void HaltExecution(HaltReason hr) {
|
void HaltExecution(HaltReason hr) {
|
||||||
Atomic::Or(&halt_reason, ~static_cast<u32>(hr));
|
Atomic::Or(&halt_reason, static_cast<u32>(hr));
|
||||||
}
|
}
|
||||||
|
|
||||||
void ClearHalt(HaltReason hr) {
|
void ClearHalt(HaltReason hr) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user