mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 18:53:28 +01: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
@ -1054,7 +1054,7 @@ void ppu_load_exec(const ppu_exec_object& elf)
|
||||
u32 tls_vsize = 0;
|
||||
|
||||
// Process information
|
||||
u32 sdk_version = 0x360001;
|
||||
u32 sdk_version = 0xffffffff;
|
||||
s32 primary_prio = 1001;
|
||||
u32 primary_stacksize = 0x100000;
|
||||
u32 malloc_pagesize = 0x100000;
|
||||
|
Loading…
Reference in New Issue
Block a user