fix WiiSD ZIP lockup

This commit is contained in:
dsbomb 2008-05-03 10:57:08 +00:00
parent 2feeacec70
commit 4b4bedcb28
2 changed files with 13 additions and 6 deletions

View File

@ -574,8 +574,6 @@ int parseWiiSDdirectory() {
}
while (VFAT_readdir(&vfsdir) == FS_SUCCESS) {
sprintf(msg, "VFAT Adding %s", vfsdir.longname);
ShowAction(msg);
memset (&filelist[numstored], 0, sizeof (FILEENTRIES));
strncpy(filelist[numstored].filename,(char *)(vfsdir.longname), MAX_LONG_NAME);
filelist[numstored].filename[MAX_LONG_NAME-1] = 0;
@ -586,10 +584,6 @@ int parseWiiSDdirectory() {
}
VFAT_closedir(&vfsdir);
entries = nbfiles;
if (entries < 0) entries = 0;
if (entries > MAXFILES) entries = MAXFILES;
return numstored;
}
#endif

View File

@ -17,6 +17,13 @@
#include <zlib.h>
#include <sdcard.h>
#ifdef HW_RVL
#include "wiisd/tff.h"
extern VFATFS vfs;
extern FSDIRENTRY vfsfile;
extern int UseWiiSDCARD;
#endif
extern sd_file *filehandle;
extern int UseSDCARD;
@ -160,6 +167,9 @@ int unzipDVDFile( unsigned char *outbuffer,
discoffset += 2048;
if ( UseSDCARD )
SDCARD_ReadFile(filehandle, &readbuffer, 2048);
#ifdef HW_RVL
else if (UseWiiSDCARD) VFAT_fread(&vfsfile, &readbuffer, 2048);
#endif
else
dvd_read(&readbuffer, 2048, discoffset);
@ -169,6 +179,9 @@ int unzipDVDFile( unsigned char *outbuffer,
if ( UseSDCARD )
SDCARD_CloseFile(filehandle);
#ifdef HW_RVL
else if (UseWiiSDCARD) VFAT_fclose(&vfsfile);
#endif
if ( res == Z_STREAM_END ) {
if ( FLIP32(pkzip.uncompressedSize == (u32)bufferoffset ) )