mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-29 23:41:19 -06:00
fixed truncate of request_id data (#4330)
This commit is contained in:
parent
d47b0524ce
commit
cf238acea9
@ -452,7 +452,7 @@ s32 createRequest(s32 titleUserCtxId, const char* pApiGroup, const char* pPath,
|
||||
}
|
||||
|
||||
s64 user_ctx_id = static_cast<s64>(titleUserCtxId);
|
||||
s32 request_id = (user_ctx_id << 0x20) | g_request_count;
|
||||
s64 request_id = (user_ctx_id << 0x20) | g_request_count;
|
||||
while (user_context->requests.contains(request_id)) {
|
||||
request_id--;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user