mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-08 01:00:11 +00:00
hle: Add sceNpEulaAbort function
This commit is contained in:
parent
956d039415
commit
a9eb321814
1 changed files with 3 additions and 5 deletions
|
@ -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);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue