mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
split rpcs3 and hle libraries
merge rpcs3 utilities
This commit is contained in:
parent
b33e2662b6
commit
62ad27d1e2
1233 changed files with 7004 additions and 3819 deletions
17
ps3fw/sceNpPlus.cpp
Normal file
17
ps3fw/sceNpPlus.cpp
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#include "stdafx.h"
|
||||
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
|
||||
LOG_CHANNEL(sceNpPlus);
|
||||
|
||||
error_code sceNpManagerIsSP()
|
||||
{
|
||||
sceNpPlus.warning("sceNpManagerIsSP()");
|
||||
// TODO seems to be cut to 1 byte by pshome likely a bool but may be more.
|
||||
return not_an_error(1);
|
||||
}
|
||||
|
||||
DECLARE(ppu_module_manager::sceNpPlus)("sceNpPlus", []()
|
||||
{
|
||||
REG_FUNC(sceNpPlus, sceNpManagerIsSP);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue