diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-01-30 14:54:21 -0500 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-01-30 14:54:21 -0500 |
commit | e3307a5b7abc9df8dcd6a0726e0b8fff3188c703 (patch) | |
tree | a6ccb39058b73400d0ed30f7c9bc90f43b59b2c8 /src/librfu_rfu.c | |
parent | 78196be41e84f632d3569f5f40cf4da2844902eb (diff) |
Still more documentation of RFU
Diffstat (limited to 'src/librfu_rfu.c')
-rw-r--r-- | src/librfu_rfu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librfu_rfu.c b/src/librfu_rfu.c index 1f7bfe76e..c732afe6c 100644 --- a/src/librfu_rfu.c +++ b/src/librfu_rfu.c @@ -109,13 +109,13 @@ u16 rfu_initializeAPI(u32 *APIBuffer, u16 buffByteSize, IntrFunc *sioIntrTable_p // An assert/debug print may have existed before, ie // printf("%s %u < %u", "somefile.c:12345", buffByteSize, num) // to push this into r3? - r3 = RFU_API_BUFF_SIZE_RAM - 0x28; + r3 = RFU_API_BUFF_SIZE_RAM; if (buffByteSize < r3) return ERR_RFU_API_BUFF_SIZE; } if (!copyInterruptToRam) { - r3 = RFU_API_BUFF_SIZE_ROM - 0x28; // same issue as above + r3 = RFU_API_BUFF_SIZE_ROM; // same issue as above if (buffByteSize < r3) return ERR_RFU_API_BUFF_SIZE; } |