mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-18 22:42:58 +00:00
a32_interface: fix copy paste error
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user