mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-06 11:43:36 +00: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) {
|
||||
Atomic::Or(&halt_reason, ~static_cast<u32>(hr));
|
||||
Atomic::Or(&halt_reason, static_cast<u32>(hr));
|
||||
}
|
||||
|
||||
void ClearHalt(HaltReason hr) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user