Compilation fix_

This commit is contained in:
Nekotekina 2015-02-20 21:05:45 +03:00
parent 0c1bfefbc8
commit 0bb15b2ff7
2 changed files with 3 additions and 1 deletions

View file

@ -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_FUNC2(module, nid, name) module.AddFunc<_targ(name)>(nid, name)
#define UNIMPLEMENTED_FUNC(module) module.Error("%s", __FUNCTION__)

View file

@ -674,5 +674,5 @@ Module sysPrxForUser("sysPrxForUser", []()
REG_FUNC(sysPrxForUser, _sys_printf);
sysPrxForUser.AddFunc<(void(*)())_nid_E75C40F2>(0xE75C40F2, _nid_E75C40F2);
REG_FUNC2(sysPrxForUser, 0xE75C40F2, _nid_E75C40F2);
});