mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-22 18:49:18 +01:00
source tidy
This commit is contained in:
parent
7d4300b5f9
commit
173bad8c6f
@ -50,12 +50,9 @@ void UpdateCheck()
|
|||||||
if(!updateChecked && networkInit && (isMounted[DEVICE_SD] || isMounted[DEVICE_USB]))
|
if(!updateChecked && networkInit && (isMounted[DEVICE_SD] || isMounted[DEVICE_USB]))
|
||||||
{
|
{
|
||||||
updateChecked = true;
|
updateChecked = true;
|
||||||
static char url[128];
|
u8 tmpbuffer[256];
|
||||||
snprintf(url, 128, "http://vba-wii.googlecode.com/svn/trunk/update.xml");
|
|
||||||
u8 * tmpbuffer = (u8 *)memalign(32,32768);
|
|
||||||
memset(tmpbuffer, 0, 32768);
|
|
||||||
|
|
||||||
if (http_request(url, NULL, tmpbuffer, 32768, SILENT) > 0)
|
if (http_request("http://vba-wii.googlecode.com/svn/trunk/update.xml", NULL, tmpbuffer, 256, SILENT) > 0)
|
||||||
{
|
{
|
||||||
mxml_node_t *xml;
|
mxml_node_t *xml;
|
||||||
mxml_node_t *item;
|
mxml_node_t *item;
|
||||||
@ -103,7 +100,6 @@ void UpdateCheck()
|
|||||||
mxmlDelete(xml);
|
mxmlDelete(xml);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
free(tmpbuffer);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user