mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-29 00:33:01 +00:00
typo fix
This commit is contained in:
parent
966c3fea5b
commit
d14c8a03b3
@ -293,7 +293,7 @@ error_code _sys_ppu_thread_create(vm::ptr<u64> thread_id, vm::ptr<ppu_thread_par
|
||||
// Compute actual stack size and allocate
|
||||
const u32 stack_size = _stacksz >= 4096 ? ::align(std::min<u32>(_stacksz, 0x100000), 4096) : 0x4000;
|
||||
|
||||
const vm::addr_t stack_base{vm::alloc(_stacksz, vm::stack, 4096)};
|
||||
const vm::addr_t stack_base{vm::alloc(stack_size, vm::stack, 4096)};
|
||||
|
||||
if (!stack_base)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user