Loader: Initialize the default NCCH values in the class declaration, not in the constructor.

This commit is contained in:
Emmanuel Gil Peyrot 2015-01-06 21:10:12 +00:00
parent 9d3bb8b7c0
commit 2d63df90a9
2 changed files with 4 additions and 8 deletions

View file

@ -102,10 +102,6 @@ static bool LZSS_Decompress(u8* compressed, u32 compressed_size, u8* decompresse
/// AppLoader_NCCH constructor
AppLoader_NCCH::AppLoader_NCCH(const std::string& filename) {
this->filename = filename;
is_compressed = false;
entry_point = 0;
ncch_offset = 0;
exefs_offset = 0;
}
/// AppLoader_NCCH destructor