mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 10:18:40 +12:00
Compilation fix_
This commit is contained in:
parent
0c1bfefbc8
commit
0bb15b2ff7
2 changed files with 3 additions and 1 deletions
|
@ -167,4 +167,6 @@ __forceinline u32 Module::AddFuncSub(const char group[8], const u64 ops[], const
|
||||||
|
|
||||||
#define REG_FUNC(module, name) module.AddFunc<_targ(name)>(#name, name)
|
#define REG_FUNC(module, name) module.AddFunc<_targ(name)>(#name, name)
|
||||||
|
|
||||||
|
#define REG_FUNC2(module, nid, name) module.AddFunc<_targ(name)>(nid, name)
|
||||||
|
|
||||||
#define UNIMPLEMENTED_FUNC(module) module.Error("%s", __FUNCTION__)
|
#define UNIMPLEMENTED_FUNC(module) module.Error("%s", __FUNCTION__)
|
||||||
|
|
|
@ -674,5 +674,5 @@ Module sysPrxForUser("sysPrxForUser", []()
|
||||||
|
|
||||||
REG_FUNC(sysPrxForUser, _sys_printf);
|
REG_FUNC(sysPrxForUser, _sys_printf);
|
||||||
|
|
||||||
sysPrxForUser.AddFunc<(void(*)())_nid_E75C40F2>(0xE75C40F2, _nid_E75C40F2);
|
REG_FUNC2(sysPrxForUser, 0xE75C40F2, _nid_E75C40F2);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue