*Little correction

This commit is contained in:
dimok321 2009-12-13 09:26:34 +00:00
parent 063072a6c9
commit 66b367c6a6
4 changed files with 147 additions and 147 deletions

View File

@ -2,8 +2,8 @@
<app version="1">
<name> USB Loader GX</name>
<coder>USB Loader GX Team</coder>
<version>1.0 r860</version>
<release_date>200912121501</release_date>
<version>1.0 r861</version>
<release_date>200912130902</release_date>
<short_description>Loads games from USB-devices</short_description>
<long_description>USB Loader GX is a libwiigui based USB iso loader with a wii-like GUI. You can install games to your HDDs and boot them with shorter loading times.
The interactive GUI is completely controllable with WiiMote, Classic Controller or GC Controller.

View File

@ -64,7 +64,7 @@ bool ZipFile::ExtractAll(const char *dest)
bool Stop = false;
u32 blocksize = 1024*50;
void *buffer = malloc(blocksize);
u8 *buffer = new u8[blocksize];
if(!buffer)
return false;
@ -131,7 +131,7 @@ bool ZipFile::ExtractAll(const char *dest)
Stop = true;
}
free(buffer);
delete [] buffer;
buffer = NULL;
ProgressStop();

View File

@ -253,7 +253,7 @@ static void ProgressWindow(const char *title, const char *msg1, const char *msg2
int tmp;
while (showProgress) {
usleep(20000);
VIDEO_WaitVSync();
GameInstallProgress();

View File

@ -180,14 +180,14 @@ bool Theme_List::ParseXML(const u8 * xmlfile)
}
}
nodetree=NULL;
nodedata=NULL;
nodeid=NULL;
nodeindex=NULL;
mxmlIndexDelete(nodeindex);
free(nodetree);
free(nodedata);
free(nodeid);
nodetree=NULL;
nodedata=NULL;
nodeid=NULL;
nodeindex=NULL;
return true;
}