hle: Add sceNpEulaAbort function
This commit is contained in:
@@ -1,5 +1,4 @@
|
|||||||
#include "stdafx.h"
|
#include "stdafx.h"
|
||||||
#include "Emu/System.h"
|
|
||||||
#include "Emu/Cell/PPUModule.h"
|
#include "Emu/Cell/PPUModule.h"
|
||||||
|
|
||||||
LOG_CHANNEL(cellSysutilNpEula);
|
LOG_CHANNEL(cellSysutilNpEula);
|
||||||
@@ -10,9 +9,9 @@ s32 cellSysutilNpEula_59D1629A() // Resistance 3, Uncharted 2
|
|||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellSysutilNpEula_5EC05AD8() // Resistance 3
|
s32 sceNpEulaAbort()
|
||||||
{
|
{
|
||||||
cellSysutilNpEula.todo("cellSysutilNpEula_5EC05AD8");
|
UNIMPLEMENTED_FUNC(cellSysutilNpEula);
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -22,10 +21,9 @@ s32 cellSysutilNpEula_6599500D() // Resistance 3, Uncharted 2
|
|||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
DECLARE(ppu_module_manager::cellSysutilNpEula)("cellSysutilNpEula", []()
|
DECLARE(ppu_module_manager::cellSysutilNpEula)("cellSysutilNpEula", []()
|
||||||
{
|
{
|
||||||
REG_FNID(cellSysutilNpEula, 0x59D1629A, cellSysutilNpEula_59D1629A);
|
REG_FNID(cellSysutilNpEula, 0x59D1629A, cellSysutilNpEula_59D1629A);
|
||||||
REG_FNID(cellSysutilNpEula, 0x5EC05AD8, cellSysutilNpEula_5EC05AD8);
|
REG_FUNC(cellSysutilNpEula, sceNpEulaAbort);
|
||||||
REG_FNID(cellSysutilNpEula, 0x6599500D, cellSysutilNpEula_6599500D);
|
REG_FNID(cellSysutilNpEula, 0x6599500D, cellSysutilNpEula_6599500D);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user