CreateThread invalid processor ID return error instead of assert. (#6354)

This commit is contained in:
PabloMK7 2023-03-21 17:06:07 +01:00 committed by GitHub
parent 359a1b3296
commit 3fb48716c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1245,7 +1245,7 @@ ResultCode SVC::CreateThread(Handle* out_handle, u32 entry_point, u32 arg, VAddr
// processorid. If this is implemented, make sure to check process->no_thread_restrictions.
break;
default:
ASSERT_MSG(false, "Unsupported thread processor ID: {}", processor_id);
return ERR_OUT_OF_RANGE;
break;
}