mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-04 18:45:05 +01:00
Added new ehcmodule to support 4 GB WBFS files by oggzee.
This commit is contained in:
parent
07d2e8582e
commit
31717f020b
@ -2,7 +2,7 @@
|
||||
<app version="1">
|
||||
<name> USB Loader GX</name>
|
||||
<coder>USB Loader GX Team</coder>
|
||||
<version>1.0 r836</version>
|
||||
<version>1.0 r837</version>
|
||||
<release_date>200910150000</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.
|
||||
|
Binary file not shown.
@ -17,9 +17,9 @@
|
||||
#define split_error(x) do { /* gprintf("\nsplit error: %s\n\n",x); */ } while(0)
|
||||
|
||||
// 1 sector less than 4gb
|
||||
//u64 OPT_split_size = (u64)4LL * 1024 * 1024 * 1024 - 512;
|
||||
u64 OPT_split_size = (u64)4LL * 1024 * 1024 * 1024 - (32 * 1024);
|
||||
// 1 sector less than 2gb
|
||||
u64 OPT_split_size = (u64)2LL * 1024 * 1024 * 1024 - 512;
|
||||
// u64 OPT_split_size = (u64)2LL * 1024 * 1024 * 1024 - 512;
|
||||
|
||||
//split_info_t split;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user