mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-12-28 09:23:34 +00:00
Fix Travis compiling
This commit is contained in:
parent
80b544aa78
commit
2e3113b5f2
@ -12,22 +12,6 @@
|
||||
|
||||
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;
|
||||
|
||||
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)>;
|
||||
|
||||
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
|
||||
enum
|
||||
{
|
||||
|
@ -2,7 +2,7 @@
|
||||
#include "Emu/Memory/Memory.h"
|
||||
#include "Emu/SysCalls/Modules.h"
|
||||
|
||||
#include "sceNp.cpp"
|
||||
#include "sceNp.h"
|
||||
|
||||
extern Module sceNp2;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user