Fixed a bunch of messy over 80 char lines
This commit is contained in:
@@ -73,7 +73,9 @@ errorret_t assetInitPBP(const char_t *pbpPath) {
|
||||
errorThrow("Failed to seek to PSAR offset in PBP file: %s", pbpPath);
|
||||
}
|
||||
|
||||
zip_uint64_t zipPsarOffset = (zip_uint64_t)ASSET.platform.pbpHeader.psarOffset;
|
||||
zip_uint64_t zipPsarOffset = (zip_uint64_t)(
|
||||
ASSET.platform.pbpHeader.psarOffset
|
||||
);
|
||||
zip_int64_t zipPsarSize = (zip_int64_t)(
|
||||
pbpSize - ASSET.platform.pbpHeader.psarOffset
|
||||
);
|
||||
|
||||
@@ -116,7 +116,9 @@ errorret_t networkPSPUpdate() {
|
||||
break;
|
||||
|
||||
default:
|
||||
errorThrow("Unknown PSP Netconf dialog status: %d", sceUtilityNetconfGetStatus());
|
||||
errorThrow(
|
||||
"Unknown PSP Netconf dialog status: %d", sceUtilityNetconfGetStatus()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -84,7 +84,7 @@ void networkPSPRequestConnection(
|
||||
);
|
||||
|
||||
/**
|
||||
* Requests the PSP to disconnect from the network (Shows the Wi-Fi disconnecting).
|
||||
* Requests the PSP to disconnect from the network.
|
||||
*
|
||||
* @param onComplete Callback when disconnection is complete.
|
||||
* @param user User data to pass to the callback.
|
||||
|
||||
Reference in New Issue
Block a user