mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-18 17:34:52 +00:00
hot-fix: Correct getpagesize
Tested on my PS4 pro, returns 16KB instead of 4KB
This commit is contained in:
parent
c66db95378
commit
6bf93071cf
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ int PS4_SYSV_ABI _sigprocmask() {
|
||||||
}
|
}
|
||||||
|
|
||||||
int PS4_SYSV_ABI posix_getpagesize() {
|
int PS4_SYSV_ABI posix_getpagesize() {
|
||||||
return 4096;
|
return 16_KB;
|
||||||
}
|
}
|
||||||
|
|
||||||
void RegisterKernel(Core::Loader::SymbolsResolver* sym) {
|
void RegisterKernel(Core::Loader::SymbolsResolver* sym) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue