mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-04 18:45:05 +01:00
64744ce20d
*Fixed Toy Story 3 boot bug *Changed IOS limits. Now allowing all IOSs from 200-255 to support more Waninkoko cIOS slots. You will get a warning if you don't have an IOS installed and try to choose it.
15 lines
226 B
C++
15 lines
226 B
C++
#include "wbfs_ntfs.h"
|
|
#include "fatmounter.h"
|
|
#include "libs/libntfs/ntfs.h"
|
|
|
|
s32 Wbfs_Ntfs::Open()
|
|
{
|
|
strcpy(wbfs_fs_drive, "NTFS:");
|
|
return MountNTFS(lba);
|
|
}
|
|
|
|
bool Wbfs_Ntfs::ShowFreeSpace(void)
|
|
{
|
|
return true;
|
|
}
|