WiiSaveBanner: Resolve a -Wreorder warning
This commit is contained in:
parent
8bcc392d5d
commit
666af4605e
|
@ -29,7 +29,7 @@ WiiSaveBanner::WiiSaveBanner(u64 title_id)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
WiiSaveBanner::WiiSaveBanner(const std::string& path) : m_path(path), m_valid(true)
|
WiiSaveBanner::WiiSaveBanner(const std::string& path) : m_path(path)
|
||||||
{
|
{
|
||||||
constexpr size_t MINIMUM_SIZE = sizeof(Header) + BANNER_SIZE + ICON_SIZE;
|
constexpr size_t MINIMUM_SIZE = sizeof(Header) + BANNER_SIZE + ICON_SIZE;
|
||||||
File::IOFile file(path, "rb");
|
File::IOFile file(path, "rb");
|
||||||
|
|
|
@ -35,7 +35,7 @@ private:
|
||||||
char16_t description[32];
|
char16_t description[32];
|
||||||
} m_header;
|
} m_header;
|
||||||
|
|
||||||
bool m_valid;
|
bool m_valid = true;
|
||||||
std::string m_path;
|
std::string m_path;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue