mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 14:31:24 +12:00
Loader: Fix default sdk version
Note: sdk version checks are unsigned checks, such value results in always true.
This commit is contained in:
parent
1986944c61
commit
e8cc9d1f52
1 changed files with 1 additions and 1 deletions
|
@ -1054,7 +1054,7 @@ void ppu_load_exec(const ppu_exec_object& elf)
|
||||||
u32 tls_vsize = 0;
|
u32 tls_vsize = 0;
|
||||||
|
|
||||||
// Process information
|
// Process information
|
||||||
u32 sdk_version = 0x360001;
|
u32 sdk_version = 0xffffffff;
|
||||||
s32 primary_prio = 1001;
|
s32 primary_prio = 1001;
|
||||||
u32 primary_stacksize = 0x100000;
|
u32 primary_stacksize = 0x100000;
|
||||||
u32 malloc_pagesize = 0x100000;
|
u32 malloc_pagesize = 0x100000;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue