usbloadergx/source/usbloader/wbfs/wbfs_ntfs.h
dimok321 a3495651f0 *Added support for starting .wbfs game files from fat32/ntfs partitions on a sector size > 512 (tested with 4096)
*modified libcustomfat and ntfs fragment fetch function to support >512 bytes per sector
*Added new ehcmodule (thanks rodries)
*Added real support of using both ports simultaniously without shutting down the other (thanks rodries for the ehcmodule works on this). There is no longer the limitation that the settings have to be on SD card for this. (ONLY HERMES CIOS)
*Moved a few settings to Feature Settings and added a new Hard Drive Settings
*Changed Wiinnertag path to only point to the path and not to the file. You must correct the path manually in custom path settings or reset you configs for this change or Winnertag won't work!!
*Removed a few compile warnings for devkitPPC R23
2011-06-22 17:57:37 +00:00

17 lines
322 B
C++

#ifndef _WBFS_NTFS_H
#define _WBFS_NTFS_H
#include "wbfs_fat.h"
class Wbfs_Ntfs: public Wbfs_Fat
{
public:
Wbfs_Ntfs(u32 lba, u32 size, u32 part, u32 port) :
Wbfs_Fat(lba, size, part, port)
{
}
virtual u8 GetFSType(void) { return PART_FS_NTFS; }
};
#endif //_WBFS_NTFS_H