Fix Travis compiling
This commit is contained in:
@@ -12,22 +12,6 @@
|
|||||||
|
|
||||||
extern Module sceNp;
|
extern Module sceNp;
|
||||||
|
|
||||||
struct sceNpInternal
|
|
||||||
{
|
|
||||||
bool m_bSceNpInitialized;
|
|
||||||
bool m_bScoreInitialized;
|
|
||||||
bool m_bLookupInitialized;
|
|
||||||
bool m_bSceNpUtilBandwidthTestInitialized;
|
|
||||||
|
|
||||||
sceNpInternal()
|
|
||||||
: m_bSceNpInitialized(false),
|
|
||||||
m_bScoreInitialized(false),
|
|
||||||
m_bLookupInitialized(false),
|
|
||||||
m_bSceNpUtilBandwidthTestInitialized(false)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
sceNpInternal sceNpInstance;
|
sceNpInternal sceNpInstance;
|
||||||
|
|
||||||
s32 sceNpInit(u32 poolsize, vm::ptr<u32> poolptr)
|
s32 sceNpInit(u32 poolsize, vm::ptr<u32> poolptr)
|
||||||
|
|||||||
@@ -219,6 +219,24 @@ enum
|
|||||||
|
|
||||||
using SceNpBasicEventHandler = func_def<s32(s32 event, s32 retCode, u32 reqId, vm::ptr<void> arg)>;
|
using SceNpBasicEventHandler = func_def<s32(s32 event, s32 retCode, u32 reqId, vm::ptr<void> arg)>;
|
||||||
|
|
||||||
|
struct sceNpInternal
|
||||||
|
{
|
||||||
|
bool m_bSceNpInitialized;
|
||||||
|
bool m_bScoreInitialized;
|
||||||
|
bool m_bLookupInitialized;
|
||||||
|
bool m_bSceNpUtilBandwidthTestInitialized;
|
||||||
|
|
||||||
|
sceNpInternal()
|
||||||
|
: m_bSceNpInitialized(false),
|
||||||
|
m_bScoreInitialized(false),
|
||||||
|
m_bLookupInitialized(false),
|
||||||
|
m_bSceNpUtilBandwidthTestInitialized(false)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
extern sceNpInternal sceNpInstance;
|
||||||
|
|
||||||
// NP Manager Utility statuses
|
// NP Manager Utility statuses
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
#include "Emu/Memory/Memory.h"
|
#include "Emu/Memory/Memory.h"
|
||||||
#include "Emu/SysCalls/Modules.h"
|
#include "Emu/SysCalls/Modules.h"
|
||||||
|
|
||||||
#include "sceNp.cpp"
|
#include "sceNp.h"
|
||||||
|
|
||||||
extern Module sceNp2;
|
extern Module sceNp2;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user