Skip to content

Commit

Permalink
Minor log fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Nov 26, 2023
1 parent f9c1fad commit 3a7b7f3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions retail/bootloader/source/arm7/main.arm7.c
Original file line number Diff line number Diff line change
Expand Up @@ -1514,7 +1514,7 @@ int arm7_main(void) {
saveSize
);
if (errorCode == ERR_NONE) {
dbg_printf("Card patch successful");
dbg_printf("Card patch successful\n\n");
} else {
dbg_printf("Card patch failed");
errorOutput();
Expand All @@ -1537,9 +1537,9 @@ int arm7_main(void) {
getRumblePakType()
);
if (errorCode == ERR_NONE) {
dbg_printf("Card hook successful");
// dbg_printf("Card hook 7 successful\n\n");
} else {
dbg_printf("Card hook failed");
// dbg_printf("Card hook 7 failed");
errorOutput();
}

Expand Down Expand Up @@ -1596,12 +1596,12 @@ int arm7_main(void) {
fatTableSize,
fatTableAddr
);
if (errorCode == ERR_NONE) {
dbg_printf("Card hook successful");
/* if (errorCode == ERR_NONE) {
dbg_printf("Card hook 9 successful\n\n");
} else {
dbg_printf("Card hook failed");
// errorOutput();
}
dbg_printf("Card hook 9 failed");
errorOutput();
} */

patchOffsetCacheFileNewCrc = swiCRC16(0xFFFF, &patchOffsetCache, sizeof(patchOffsetCacheContents));
if (patchOffsetCacheFileNewCrc != patchOffsetCacheFilePrevCrc) {
Expand Down
10 changes: 5 additions & 5 deletions retail/bootloaderi/source/arm7/main.arm7.c
Original file line number Diff line number Diff line change
Expand Up @@ -1810,9 +1810,9 @@ int arm7_main(void) {
false
);
if (errorCode == ERR_NONE) {
dbg_printf("Card hook successful");
dbg_printf("Card hook 7 successful\n\n");
} else {
dbg_printf("Card hook failed");
dbg_printf("Card hook 7 failed");
errorOutput();
}

Expand Down Expand Up @@ -2032,7 +2032,7 @@ int arm7_main(void) {
saveSize
);
if (errorCode == ERR_NONE) {
dbg_printf("Card patch successful");
dbg_printf("Card patch successful\n\n");
} else {
dbg_printf("Card patch failed");
errorOutput();
Expand Down Expand Up @@ -2072,9 +2072,9 @@ int arm7_main(void) {
usesCloneboot
);
if (errorCode == ERR_NONE) {
dbg_printf("Card hook successful");
// dbg_printf("Card hook 7 successful\n\n");
} else {
dbg_printf("Card hook failed");
// dbg_printf("Card hook 7 failed");
errorOutput();
}

Expand Down

0 comments on commit 3a7b7f3

Please sign in to comment.