Update Thread.cpp

This commit is contained in:
Elad Ashkenazi 2022-08-31 20:56:23 +03:00 committed by kd-11
parent d8494ef1ae
commit b7599c0f30
1 changed files with 1 additions and 1 deletions

View File

@ -1240,7 +1240,7 @@ bool handle_access_violation(u32 addr, bool is_writing, ucontext_t* context) noe
const auto cpu = get_current_cpu_thread(); const auto cpu = get_current_cpu_thread();
if (vm::check_addr(addr) && addr < RAW_SPU_BASE_ADDR && rsx::g_access_violation_handler) if (addr < RAW_SPU_BASE_ADDR && vm::check_addr(addr) && rsx::g_access_violation_handler)
{ {
bool state_changed = false; bool state_changed = false;