mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
ce5930f297
* Updated to Hermes usb storage code * Fixed some bugs in ntfs while writing timestamps, resulting in different hashes (dimok) * Fixed codedump when switching partitions (issue 1454) * Fixed graphical glitch on 4:3 screens, where the prefetch cover was visible in the coverwall * Fixed a bug with installing games, due to the switch to C++ (dimok)
18 lines
252 B
C
18 lines
252 B
C
#include <gccore.h>
|
|
#include "libwbfs/libwbfs.h"
|
|
|
|
static u32 done = 0;
|
|
static u32 total = 0;
|
|
|
|
void WBFS_Spinner(u32 d, u32 t)
|
|
{
|
|
done = d;
|
|
total = t;
|
|
}
|
|
|
|
void GetProgressValue(u32 * d, u32 * t)
|
|
{
|
|
*d = done;
|
|
*t = total;
|
|
}
|