rpcsx/ps3fw/sceNpPlus.cpp

18 lines
363 B
C++
Raw Permalink Normal View History

2022-04-10 15:14:17 +02:00
#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.
2024-01-31 05:25:26 +01:00
return not_an_error(1);
2022-04-10 15:14:17 +02:00
}
DECLARE(ppu_module_manager::sceNpPlus)("sceNpPlus", []()
{
REG_FUNC(sceNpPlus, sceNpManagerIsSP);
});