ROMfullName is already zero'ed before, no need to do it

for each entry.
I swear, i was looking there for another issue.
This commit is contained in:
riccardom 2010-04-02 13:45:54 +00:00
parent a4ffedc8df
commit 40d342e48f
1 changed files with 0 additions and 1 deletions

View File

@ -326,7 +326,6 @@ void GameInfo::populate()
u8 num = (T1ReadByte((u8*)romdata, header.IconOff) == 1)?6:7;
for (int i = 0; i < num; i++)
{
memset(ROMfullName[i],0,sizeof(ROMfullName[i]));
wcstombs(ROMfullName[i], (wchar_t *)(romdata+header.IconOff+0x240+(i*0x100)), 0x100);
trim(ROMfullName[i]);
}