mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-25 20:56:53 +01:00
* Added Free space on NTFS drives
* Applied patch from mlgd, which prevented the right partition to be selected after exiting the settings page.
This commit is contained in:
parent
57ecea56e9
commit
1c6c607cf1
@ -2,8 +2,8 @@
|
|||||||
<app version="1">
|
<app version="1">
|
||||||
<name> USB Loader GX</name>
|
<name> USB Loader GX</name>
|
||||||
<coder>USB Loader GX Team</coder>
|
<coder>USB Loader GX Team</coder>
|
||||||
<version>1.0 r900</version>
|
<version>1.0 r901</version>
|
||||||
<release_date>201001311842</release_date>
|
<release_date>201001312334</release_date>
|
||||||
<short_description>Loads games from USB-devices</short_description>
|
<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.
|
<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.
|
The interactive GUI is completely controllable with WiiMote, Classic Controller or GC Controller.
|
||||||
|
@ -328,6 +328,12 @@ int ntfs_statvfs_r (struct _reent *r, const char *path, struct statvfs *buf)
|
|||||||
// Zero out the stat buffer
|
// Zero out the stat buffer
|
||||||
memset(buf, 0, sizeof(struct statvfs));
|
memset(buf, 0, sizeof(struct statvfs));
|
||||||
|
|
||||||
|
if(ntfs_volume_get_free_space(vd->vol) < 0)
|
||||||
|
{
|
||||||
|
ntfsUnlock(vd);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
// File system block size
|
// File system block size
|
||||||
buf->f_bsize = vd->vol->cluster_size;
|
buf->f_bsize = vd->vol->cluster_size;
|
||||||
|
|
||||||
|
@ -89,7 +89,7 @@ int MenuDiscList() {
|
|||||||
char theTime[80]="";
|
char theTime[80]="";
|
||||||
time_t lastrawtime=0;
|
time_t lastrawtime=0;
|
||||||
|
|
||||||
if (mountMethod != 3 && load_from_fs == PART_FS_WBFS) {
|
if (mountMethod != 3 && load_from_fs != PART_FS_FAT) {
|
||||||
WBFS_DiskSpace(&used, &freespace);
|
WBFS_DiskSpace(&used, &freespace);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -196,7 +196,7 @@ int MenuDiscList() {
|
|||||||
screenShotBtn.SetTrigger(&trigZ);
|
screenShotBtn.SetTrigger(&trigZ);
|
||||||
|
|
||||||
char spaceinfo[30];
|
char spaceinfo[30];
|
||||||
if (load_from_fs != PART_FS_WBFS) {
|
if (load_from_fs == PART_FS_FAT) {
|
||||||
memset(spaceinfo, 0, 30);
|
memset(spaceinfo, 0, 30);
|
||||||
} else {
|
} else {
|
||||||
if (!strcmp(Settings.db_language,"JA")) {
|
if (!strcmp(Settings.db_language,"JA")) {
|
||||||
|
@ -97,7 +97,6 @@ int MenuInstall() {
|
|||||||
|
|
||||||
sprintf(gametxt, "%s", tr("Installing game:"));
|
sprintf(gametxt, "%s", tr("Installing game:"));
|
||||||
|
|
||||||
/*
|
|
||||||
if (gamesize > freespace) {
|
if (gamesize > freespace) {
|
||||||
char errortxt[50];
|
char errortxt[50];
|
||||||
sprintf(errortxt, "%s: %.2fGB, %s: %.2fGB",tr("Game Size"), gamesize, tr("Free Space"), freespace);
|
sprintf(errortxt, "%s: %.2fGB, %s: %.2fGB",tr("Game Size"), gamesize, tr("Free Space"), freespace);
|
||||||
@ -105,7 +104,6 @@ int MenuInstall() {
|
|||||||
menu = MENU_DISCLIST;
|
menu = MENU_DISCLIST;
|
||||||
break;
|
break;
|
||||||
} else {
|
} else {
|
||||||
*/
|
|
||||||
USBStorage_Watchdog(0);
|
USBStorage_Watchdog(0);
|
||||||
SetupGameInstallProgress(gametxt, name);
|
SetupGameInstallProgress(gametxt, name);
|
||||||
ret = WBFS_AddGame();
|
ret = WBFS_AddGame();
|
||||||
@ -131,7 +129,7 @@ int MenuInstall() {
|
|||||||
menu = MENU_DISCLIST;
|
menu = MENU_DISCLIST;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
// }
|
}
|
||||||
} else {
|
} else {
|
||||||
menu = MENU_DISCLIST;
|
menu = MENU_DISCLIST;
|
||||||
break;
|
break;
|
||||||
|
@ -2147,12 +2147,12 @@ int MenuSettings()
|
|||||||
while (w.GetEffect()>0) usleep(50);
|
while (w.GetEffect()>0) usleep(50);
|
||||||
|
|
||||||
// if partition has changed, Reinitialize it
|
// if partition has changed, Reinitialize it
|
||||||
PartInfo pinfo = partitions.pinfo[Settings.partition];
|
|
||||||
partitionEntry pentry = partitions.pentry[Settings.partition];
|
|
||||||
load_from_fs = pinfo.part_fs;
|
|
||||||
if (Settings.partition != settingspartitionold) {
|
if (Settings.partition != settingspartitionold) {
|
||||||
WBFS_Close();
|
WBFS_Close();
|
||||||
WBFS_OpenPart(load_from_fs, pinfo.index, pentry.sector, pentry.size, (char *) &game_partition);
|
PartInfo pinfo = partitions.pinfo[Settings.partition];
|
||||||
|
partitionEntry pentry = partitions.pentry[Settings.partition];
|
||||||
|
WBFS_OpenPart(load_from_fs, pinfo.index, pentry.sector, pentry.size, (char *) &game_partition);
|
||||||
|
load_from_fs = pinfo.part_fs;
|
||||||
}
|
}
|
||||||
|
|
||||||
// if language has changed, reload titles
|
// if language has changed, reload titles
|
||||||
|
Loading…
Reference in New Issue
Block a user