How to code in displaying a sysfile on wii September 14, 2011 11:16PM | Registered: 13 years ago Posts: 1 |
Re: How to code in displaying a sysfile on wii September 16, 2011 11:01PM | Registered: 15 years ago Posts: 98 |
//Copy to sd. while((i = ISFS_Read(fd, buf, DUMP_BUF_SIZE)) > 0) { fwrite(buf, 1, i, fp); bytes += i; l++; if(l % 50) spinner(); }
//Copy to sd. while((i = ISFS_Read(fd, buf, DUMP_BUF_SIZE)) > 0) { fwrite(buf, 1, i, fp); }You've got the data you want at that buf pointer. Print it.