Small fix

This commit is contained in:
Nekotekina 2014-08-26 20:45:43 +04:00
parent 5d3a612003
commit d7fd8e3ca6
6 changed files with 26 additions and 14 deletions

View file

@ -397,11 +397,6 @@ void sysPrxForUser_init()
REG_FUNC(sysPrxForUser, _sys_strncpy);
sysPrxForUser->AddFunc(0xe75c40f2, _unnamed_E75C40F2); // real name is unknown
spu_printf_agcb = 0;
spu_printf_dgcb = 0;
spu_printf_atcb = 0;
spu_printf_dtcb = 0;
REG_FUNC(sysPrxForUser, _sys_spu_printf_initialize);
REG_FUNC(sysPrxForUser, _sys_spu_printf_finalize);
REG_FUNC(sysPrxForUser, _sys_spu_printf_attach_group);
@ -411,3 +406,11 @@ void sysPrxForUser_init()
REG_FUNC(sysPrxForUser, _sys_printf);
}
void sysPrxForUser_load()
{
spu_printf_agcb = 0;
spu_printf_dgcb = 0;
spu_printf_atcb = 0;
spu_printf_dtcb = 0;
}