mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-12-26 21:24:01 +00:00
elf64 loader: fixed too small primary stack size usage
This commit is contained in:
parent
38514c291d
commit
657a6c9511
@ -664,7 +664,7 @@ namespace loader
|
||||
LOG_NOTICE(LOADER, "*** ppc seg: 0x%x", info.ppc_seg);
|
||||
//LOG_NOTICE(LOADER, "*** crash dump param addr: 0x%x", info.crash_dump_param_addr);
|
||||
|
||||
Emu.SetParams(info.sdk_version, info.malloc_pagesize, info.primary_stacksize, info.primary_prio);
|
||||
Emu.SetParams(info.sdk_version, info.malloc_pagesize, std::max<u32>(info.primary_stacksize, 0x4000), info.primary_prio);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user