mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 17:01:24 +12:00
17 lines
352 B
C++
17 lines
352 B
C++
#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 CELL_OK;
|
|
}
|
|
|
|
DECLARE(ppu_module_manager::sceNpPlus)("sceNpPlus", []()
|
|
{
|
|
REG_FUNC(sceNpPlus, sceNpManagerIsSP);
|
|
});
|