
Originally Posted by
E P
I would like to know what exactly changed there. Maybe it could be changed at the source code level. I don't like supporting binary hacking especially when the source exists.
The way apply this changed to the source:
(ps2sdksrc\iop\hdd\apa\src\misc.c)
original:
Code:
int getIlinkID(u8 *idbuf)
{
int err=0;
memset(idbuf, 0, 32);
if(CdReadIlinkID(idbuf, &err))
if(err==0)
return 0;
dprintf1("*****d: Error: cannot get ilink id\n");
return -EIO;
}
changed:
Code:
int getIlinkID(u8 *idbuf)
{
int err=0;
memset(idbuf, 0, 32);
CdReadIlinkID(idbuf, &err)
return 0;
}