mirror of
https://github.com/developersu/ns-usbloader.git
synced 2025-05-14 15:15:05 -04:00
Another one readme update
This commit is contained in:
parent
94b0c764f1
commit
f295cf014d
3 changed files with 5 additions and 4 deletions
|
@ -116,9 +116,9 @@ public class PFSProvider {
|
|||
nca_name_offset = ByteBuffer.wrap(Arrays.copyOfRange(ncaInfoArr, 20, 24)).order(ByteOrder.LITTLE_ENDIAN).getInt(); // yes, cast from int to long.
|
||||
|
||||
printLog(" Padding check", offset == 0?EMsgType.PASS:EMsgType.WARNING);
|
||||
printLog(" NCA offset check "+nca_offset, nca_offset >= 0?EMsgType.PASS:EMsgType.WARNING);
|
||||
printLog(" NCA offset check: "+nca_offset, nca_offset >= 0?EMsgType.PASS:EMsgType.WARNING);
|
||||
printLog(" NCA size check: "+nca_size, nca_size >= 0?EMsgType.PASS: EMsgType.WARNING);
|
||||
printLog(" NCA name offset check "+nca_name_offset, nca_name_offset >= 0?EMsgType.PASS:EMsgType.WARNING);
|
||||
printLog(" NCA name offset check: "+nca_name_offset, nca_name_offset >= 0?EMsgType.PASS:EMsgType.WARNING);
|
||||
|
||||
NCAFile ncaFile = new NCAFile();
|
||||
ncaFile.setNcaOffset(nca_offset);
|
||||
|
|
|
@ -545,8 +545,7 @@ public class UsbCommunications extends Task<Void> {
|
|||
printLog("GL File structure validated and it will be uploaded", EMsgType.PASS);
|
||||
|
||||
if (initGoldLeafProtocol(pfsElement))
|
||||
status = EFileStatus.UPLOADED;
|
||||
// else - no change status that is already set to FAILED
|
||||
status = EFileStatus.UPLOADED; // else - no change status that is already set to FAILED
|
||||
}
|
||||
private boolean initGoldLeafProtocol(PFSProvider pfsElement){
|
||||
// Go parse commands
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue