Skip to content

Commit

Permalink
Fix some warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Dec 25, 2023
1 parent bf68a71 commit dc8384e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions retail/bootloader/source/arm7/find_arm9.c
Original file line number Diff line number Diff line change
Expand Up @@ -2032,14 +2032,14 @@ u32* findTwlSleepModeEndOffset(const tNDSHeader* ndsHeader) {

if (!offset) {
offset = (u32*)findOffsetThumb(
(u32*)ndsHeader->arm9destination, iUncompressedSize,//ndsHeader->arm9binarySize,
(u16*)ndsHeader->arm9destination, iUncompressedSize,//ndsHeader->arm9binarySize,
twlSleepModeEndSignatureThumbEarly, 7
);
}

if (!offset) {
offset = (u32*)findOffsetThumb(
(u32*)ndsHeader->arm9destination, iUncompressedSize,//ndsHeader->arm9binarySize,
(u16*)ndsHeader->arm9destination, iUncompressedSize,//ndsHeader->arm9binarySize,
twlSleepModeEndSignatureThumb, 3
);
}
Expand Down

0 comments on commit dc8384e

Please sign in to comment.