diff --git a/SysCheckHDE/boot.dol b/SysCheckHDE/boot.dol new file mode 100644 index 0000000..694d182 Binary files /dev/null and b/SysCheckHDE/boot.dol differ diff --git a/Version.txt b/Version.txt index 886b2a9..576f29a 100644 --- a/Version.txt +++ b/Version.txt @@ -1 +1 @@ -Version=19 \ No newline at end of file +Version=20 \ No newline at end of file diff --git a/source/update.c b/source/update.c index 1fb047c..491470e 100644 --- a/source/update.c +++ b/source/update.c @@ -17,7 +17,7 @@ s32 downloadSyscheckFile(char* fileName) { u8* outbuf; u32 lenght; - snprintf(buf, 128, "http://syscheck.googlecode.com/svn/trunk/hbc/%s", fileName); + snprintf(buf, 127, "http://syscheck-hd.googlecode.com/svn/trunk/SysCheckHDE/%s", fileName); ret = http_request(buf, 1 << 31); if (!ret) @@ -66,10 +66,10 @@ s32 updateApp() { static char buf[128]; u32 http_status; u8* outbuf; - u32 lenght; + u32 length; const char *checkStr = "Version="; - snprintf(buf, 128, "http://syscheck.googlecode.com/svn/trunk/Version.txt"); + snprintf(buf, 128, "http://syscheck-hd.googlecode.com/svn/trunk/Version.txt"); ret = http_request(buf, 1 << 31); if (!ret) @@ -78,7 +78,7 @@ s32 updateApp() { return -1; } - ret = http_get_result(&http_status, &outbuf, &lenght); + ret = http_get_result(&http_status, &outbuf, &length); if (((int)*outbuf & 0xF0000000) == 0xF0000000) {