1
0
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:
Eladash 2019-11-08 18:46:20 +02:00 committed by Ivan
parent 1986944c61
commit e8cc9d1f52

View File

@ -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;