Loader: Fix indentation, whitespace, and a few other such cosmetic stuff.
This commit is contained in:
parent
3ff5a80d46
commit
bc2212106f
|
@ -13,10 +13,8 @@
|
||||||
|
|
||||||
#include "3dsx.h"
|
#include "3dsx.h"
|
||||||
|
|
||||||
|
|
||||||
namespace Loader {
|
namespace Loader {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* File layout:
|
* File layout:
|
||||||
* - File header
|
* - File header
|
||||||
|
@ -207,28 +205,28 @@ int THREEDSXReader::Load3DSXFile(const std::string& filename, u32 base_addr)
|
||||||
return ERROR_NONE;
|
return ERROR_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// AppLoader_DSX constructor
|
/// AppLoader_DSX constructor
|
||||||
AppLoader_THREEDSX::AppLoader_THREEDSX(const std::string& filename) : filename(filename) {
|
AppLoader_THREEDSX::AppLoader_THREEDSX(const std::string& filename) : filename(filename) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// AppLoader_DSX destructor
|
/// AppLoader_DSX destructor
|
||||||
AppLoader_THREEDSX::~AppLoader_THREEDSX() {
|
AppLoader_THREEDSX::~AppLoader_THREEDSX() {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads a 3DSX file
|
* Loads a 3DSX file
|
||||||
* @return Success on success, otherwise Error
|
* @return Success on success, otherwise Error
|
||||||
*/
|
*/
|
||||||
ResultStatus AppLoader_THREEDSX::Load() {
|
ResultStatus AppLoader_THREEDSX::Load() {
|
||||||
LOG_INFO(Loader, "Loading 3DSX file %s...", filename.c_str());
|
LOG_INFO(Loader, "Loading 3DSX file %s...", filename.c_str());
|
||||||
FileUtil::IOFile file(filename, "rb");
|
FileUtil::IOFile file(filename, "rb");
|
||||||
if (file.IsOpen()) {
|
if (file.IsOpen()) {
|
||||||
THREEDSXReader::Load3DSXFile(filename, 0x00100000);
|
THREEDSXReader::Load3DSXFile(filename, 0x00100000);
|
||||||
Kernel::LoadExec(0x00100000);
|
Kernel::LoadExec(0x00100000);
|
||||||
} else {
|
} else {
|
||||||
return ResultStatus::Error;
|
return ResultStatus::Error;
|
||||||
}
|
|
||||||
return ResultStatus::Success;
|
|
||||||
}
|
}
|
||||||
|
return ResultStatus::Success;
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace Loader
|
} // namespace Loader
|
||||||
|
|
|
@ -149,7 +149,7 @@ ResultStatus AppLoader_NCCH::LoadSectionExeFS(const char* name, std::vector<u8>&
|
||||||
exefs_header.section[i].name);
|
exefs_header.section[i].name);
|
||||||
|
|
||||||
s64 section_offset = (exefs_header.section[i].offset + exefs_offset +
|
s64 section_offset = (exefs_header.section[i].offset + exefs_offset +
|
||||||
sizeof(ExeFs_Header)+ncch_offset);
|
sizeof(ExeFs_Header)+ncch_offset);
|
||||||
file.Seek(section_offset, 0);
|
file.Seek(section_offset, 0);
|
||||||
|
|
||||||
// Section is compressed...
|
// Section is compressed...
|
||||||
|
|
Reference in New Issue