common/core: Silence initialization order warnings

This commit is contained in:
Lioncash 2017-12-10 19:50:45 -05:00
parent 9699194b54
commit c31f932afe
5 changed files with 7 additions and 7 deletions

View file

@ -96,7 +96,7 @@ static bool LZSS_Decompress(const u8* compressed, u32 compressed_size, u8* decom
}
NCCHContainer::NCCHContainer(const std::string& filepath, u32 ncch_offset)
: filepath(filepath), ncch_offset(ncch_offset) {
: ncch_offset(ncch_offset), filepath(filepath) {
file = FileUtil::IOFile(filepath, "rb");
}