Fix typo in sceKernelAllocPartitionMemory().

It sets it in the consturctor and terminates it properly there.
This commit is contained in:
Unknown W. Brackets 2013-02-28 02:14:06 -08:00
parent 33078d4a90
commit 2104ebeaae

View file

@ -511,7 +511,6 @@ int sceKernelAllocPartitionMemory(int partition, const char *name, int type, u32
return SCE_KERNEL_ERROR_MEMBLOCK_ALLOC_FAILED;
}
SceUID uid = kernelObjects.Create(block);
strncpy(block->name, name, 32);
DEBUG_LOG(HLE,"%i = sceKernelAllocPartitionMemory(partition = %i, %s, type= %i, size= %i, addr= %08x)",
uid, partition, name, type, size, addr);