Added sceNpBasicGetFriendListEntryCount and sceNpBasicGetMessageEntryCount

Fixed (?) sometimes functions being unloaded when they shouldn't.
Also reverted the SPUThread hack.
This commit is contained in:
Raul Tambre 2014-09-20 19:09:18 +03:00
parent df84e89d46
commit 6360ef1790
5 changed files with 62 additions and 12 deletions

View file

@ -1,4 +1,5 @@
#include "stdafx.h"
#include "Emu/Memory/Memory.h"
#include "Emu/SysCalls/Modules.h"
Module *cellOvis = nullptr;
@ -11,9 +12,9 @@ enum
CELL_OVIS_ERROR_ALIGN = 0x80410410,
};
int cellOvisGetOverlayTableSize()
int cellOvisGetOverlayTableSize(vm::ptr<const char> elf)
{
UNIMPLEMENTED_FUNC(cellOvis);
cellOvis->Todo("cellOvisGetOverlayTableSize(elf_addr=0x%x)", elf.addr());
return CELL_OK;
}