mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 23:45:12 +00:00
RPCN v0.7
Bump protocol version Improve signaling RTT calculation for client Implement score game data functions Various sceNpScore fixes Verify flatbuffer buffers Use std::variant for transaction specific data
This commit is contained in:
parent
87797e117e
commit
01c285fc4a
15 changed files with 762 additions and 318 deletions
|
|
@ -80,6 +80,13 @@ void score_transaction_ctx::wait_for_completion()
|
|||
completion_cond.wait(lock);
|
||||
}
|
||||
|
||||
bool score_transaction_ctx::set_result_and_wake(error_code err)
|
||||
{
|
||||
result = err;
|
||||
wake_cond.notify_one();
|
||||
return true;
|
||||
}
|
||||
|
||||
match2_ctx::match2_ctx(vm::cptr<SceNpCommunicationId> communicationId, vm::cptr<SceNpCommunicationPassphrase> passphrase)
|
||||
{
|
||||
ensure(!communicationId->data[9] && strlen(communicationId->data) == 9);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue