mirror of
https://github.com/wiiu-env/homebrew_on_menu_plugin.git
synced 2024-11-22 02:29:15 +01:00
Formatting
This commit is contained in:
parent
76709548f3
commit
1a462d9d7d
@ -68,7 +68,7 @@ ON_APPLICATION_END() {
|
||||
|
||||
void fillXmlForTitleID(uint32_t titleid_upper, uint32_t titleid_lower, ACPMetaXml *out_buf) {
|
||||
int32_t id = getIDByLowerTitleID(titleid_lower);
|
||||
if(id < 0){
|
||||
if (id < 0) {
|
||||
DEBUG_FUNCTION_LINE("Failed to get id by titleid\n");
|
||||
return;
|
||||
}
|
||||
@ -282,7 +282,7 @@ DECL_FUNCTION(int, FSOpenFile, FSClient *client, FSCmdBlock *block, char *path,
|
||||
sscanf(id, "%08X", &lowerTitleID);
|
||||
int32_t idVal = getIDByLowerTitleID(lowerTitleID);
|
||||
if (idVal < 0) {
|
||||
DEBUG_FUNCTION_LINE("Failed to find id for titleID %08X\n",lowerTitleID);
|
||||
DEBUG_FUNCTION_LINE("Failed to find id for titleID %08X\n", lowerTitleID);
|
||||
} else {
|
||||
if (FSOpenFile_for_ID(idVal, ending, handle) < 0) {
|
||||
return res;
|
||||
|
@ -153,7 +153,7 @@ bool initCompressedFileReadInformation(fileReadInformation *info) {
|
||||
|
||||
int32_t loadFileIntoBuffer(uint32_t lowerTitleID, const char *filepath, char *buffer, int sizeToRead) {
|
||||
int32_t id = getIDByLowerTitleID(lowerTitleID);
|
||||
if(id < 0){
|
||||
if (id < 0) {
|
||||
DEBUG_FUNCTION_LINE("Failed to get id by titleid\n");
|
||||
return -3;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user