Dont call std::terminate() after normal access violation handling
This commit is contained in:
@@ -1123,7 +1123,7 @@ bool handle_access_violation(u32 addr, bool is_writing, x64_context* context)
|
|||||||
g_tls_fault_rsx++;
|
g_tls_fault_rsx++;
|
||||||
if (cpu && cpu->test_stopped())
|
if (cpu && cpu->test_stopped())
|
||||||
{
|
{
|
||||||
std::terminate();
|
//
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
@@ -1265,7 +1265,7 @@ bool handle_access_violation(u32 addr, bool is_writing, x64_context* context)
|
|||||||
{
|
{
|
||||||
if (cpu && cpu->test_stopped())
|
if (cpu && cpu->test_stopped())
|
||||||
{
|
{
|
||||||
std::terminate();
|
//
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
Reference in New Issue
Block a user