Add SceAvSetting for higher firmware versions (#44)

This commit is contained in:
Chaitanya Talnikar 2023-08-14 20:08:31 -04:00 committed by GitHub
parent 3d8cc28acd
commit b145c14b0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,6 +40,9 @@ orbis::ErrorCode ShmDevice::open(orbis::Ref<orbis::File> *file,
} else if (name == "/rpcsx-SceNpPlusLogger") {
realFlags |= O_CREAT;
size = 0x4400;
} else if (name == "/rpcsx-SceAvSetting") {
realFlags |= O_CREAT;
size = 0x4400;
} else {
ORBIS_LOG_ERROR("SHM: unknown shared memory", path);
thread->where();