mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 21:38:01 +03:00
Dont call std::terminate() after normal access violation handling
This commit is contained in:
parent
6f770c8e35
commit
b61492ca30
1 changed files with 2 additions and 2 deletions
|
@ -1123,7 +1123,7 @@ bool handle_access_violation(u32 addr, bool is_writing, x64_context* context)
|
|||
g_tls_fault_rsx++;
|
||||
if (cpu && cpu->test_stopped())
|
||||
{
|
||||
std::terminate();
|
||||
//
|
||||
}
|
||||
|
||||
return true;
|
||||
|
@ -1265,7 +1265,7 @@ bool handle_access_violation(u32 addr, bool is_writing, x64_context* context)
|
|||
{
|
||||
if (cpu && cpu->test_stopped())
|
||||
{
|
||||
std::terminate();
|
||||
//
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue