Merge pull request #906 from lioncash/cruft

DiscIO: Get rid of unnecessary struct differencing
This commit is contained in:
Ryan Houdek 2014-08-29 19:51:05 -05:00
commit b6cd099e2a

View File

@ -32,14 +32,6 @@ enum EDiscType
DISC_TYPE_WAD
};
#ifndef _WIN32
struct SPartition
{
u64 Offset;
u32 Type;
}; //gcc 4.3 cries if it's local
#endif
class CBlobBigEndianReader
{
public:
@ -155,13 +147,12 @@ static IVolume* CreateVolumeFromCryptedWiiImage(IBlobReader& _rReader, u32 _Part
if ((int)_VolumeNum != -1 && _VolumeNum > numPartitions)
return nullptr;
#ifdef _WIN32
struct SPartition
{
u64 Offset;
u32 Type;
};
#endif
struct SPartitionGroup
{
u32 numPartitions;