1
0
mirror of https://github.com/RPCS3/rpcs3 synced 2024-06-29 06:04:23 +00:00

Cut scenNpDrmIsAvailable sleep time by half

This commit is contained in:
Elad Ashkenazi 2024-06-25 10:02:53 +03:00 committed by GitHub
parent 87f5368d3c
commit f18e3be4f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -744,7 +744,7 @@ error_code sceNpDrmIsAvailable(ppu_thread& ppu, vm::cptr<u8> k_licensee_addr, vm
lv2_obj::sleep(ppu);
const auto ret = npDrmIsAvailable(k_licensee_addr, drm_path);
lv2_sleep(50'000, &ppu);
lv2_sleep(25'000, &ppu);
return ret;
}