mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
hle: Add some missing functions
0xBA50BC23 => cellCelpEncOpenExt 0x1AC58D11 => cellHttpFlushCache 0xA39FE9DC => cellHttpEndCache 0xB4FA3111 => cellHttpInitCache 0x4A18A89E => sceNpMatchingSetRoomInfoNoLimit 0xB020684E => sceNpMatchingGetRoomInfoNoLimit
This commit is contained in:
parent
d7ad991b7e
commit
8dbf2638e2
3 changed files with 43 additions and 3 deletions
|
|
@ -1,5 +1,4 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
|
||||
LOG_CHANNEL(sceNpMatchingInt);
|
||||
|
|
@ -30,6 +29,12 @@ s32 sceNpMatchingJoinRoomGUI(vm::ptr<void> unknown)
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sceNpMatchingSetRoomInfoNoLimit(vm::ptr<void> unknown)
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sceNpMatchingGetRoomListWithoutGUI()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
||||
|
|
@ -42,6 +47,12 @@ s32 sceNpMatchingGetRoomListGUI()
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sceNpMatchingGetRoomInfoNoLimit(vm::ptr<void> unknown)
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 sceNpMatchingCancelRequestGUI()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
||||
|
|
@ -66,8 +77,10 @@ DECLARE(ppu_module_manager::sceNpMatchingInt)("sceNpMatchingInt", []()
|
|||
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomMemberList);
|
||||
REG_FUNC(sceNpMatchingInt, sceNpMatchingJoinRoomWithoutGUI);
|
||||
REG_FUNC(sceNpMatchingInt, sceNpMatchingJoinRoomGUI);
|
||||
REG_FUNC(sceNpMatchingInt, sceNpMatchingSetRoomInfoNoLimit);
|
||||
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomListWithoutGUI);
|
||||
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomListGUI);
|
||||
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomInfoNoLimit);
|
||||
REG_FUNC(sceNpMatchingInt, sceNpMatchingCancelRequestGUI);
|
||||
REG_FUNC(sceNpMatchingInt, sceNpMatchingSendRoomMessage);
|
||||
REG_FUNC(sceNpMatchingInt, sceNpMatchingCreateRoomWithoutGUI);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue