diff --git a/rpcs3/Emu/Cell/lv2/sys_memory.cpp b/rpcs3/Emu/Cell/lv2/sys_memory.cpp index a6b4e83127..fe9beb7ea2 100644 --- a/rpcs3/Emu/Cell/lv2/sys_memory.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_memory.cpp @@ -273,11 +273,7 @@ error_code sys_memory_container_get_size(vm::ptr mem_info, u3 } mem_info->total_user_memory = ct->size; // Total container memory - // Available container memory, minus a hidden 'buffer' - // This buffer seems to be used by the PS3 OS for c style 'mallocs' - // Todo: Research this more, even though we dont use this buffer, it helps out games when calculating - // expected memory they can use allowing them to boot - mem_info->available_user_memory = ct->size - ct->used - 0x1000000; + mem_info->available_user_memory = ct->size - ct->used; // Available container memory return CELL_OK; }