mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-25 12:46:53 +01:00
*Little correction
This commit is contained in:
parent
063072a6c9
commit
66b367c6a6
@ -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.
|
||||
|
@ -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();
|
||||
|
@ -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();
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user