Core: Get rid of C-style struct typedefs

This commit is contained in:
Lioncash
2014-08-09 21:58:08 -04:00
parent a899d2b5dd
commit 11f730fd1e
4 changed files with 25 additions and 23 deletions

View File

@ -38,14 +38,15 @@ static u32 state_checksum(u32 *buf, int len)
return checksum;
}
typedef struct {
struct StateFlags
{
u32 checksum;
u8 flags;
u8 type;
u8 discstate;
u8 returnto;
u32 unknown[6];
} StateFlags;
};
bool CBoot::Boot_WiiWAD(const std::string& _pFilename)
{