PSP2: Fix small memory error

This commit is contained in:
Jeffrey Pfau 2015-11-22 14:26:48 -08:00
parent 6833c88284
commit e53cc7060c
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ void mappedMemoryFree(void* memory, size_t size) {
} }
if (ptr == memory) { if (ptr == memory) {
sceKernelFreeMemBlock(uid); sceKernelFreeMemBlock(uid);
SceUIDListUnshift(&uids, i, 1); SceUIDListShift(&uids, i, 1);
return; return;
} }
} }