diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-04-27 19:11:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 19:11:59 -0400 |
commit | ece62fa4ba8e385809deff330c7d7a0b348c10ae (patch) | |
tree | 4eb423066318c6e83362152f83d3cf8364e78e98 /include | |
parent | 9f8f350da367a81114efe7f0286116e719ec7d8f (diff) | |
parent | 151f583f0c2c6cf52b29236b407a64588caa3740 (diff) |
Merge pull request #333 from jiangzhengwenjz/librfu
fix librfu issues
Diffstat (limited to 'include')
-rw-r--r-- | include/librfu.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/librfu.h b/include/librfu.h index de5cdcdbc..88e77acbd 100644 --- a/include/librfu.h +++ b/include/librfu.h @@ -90,13 +90,8 @@ #define RFU_MBOOT_DOWNLOADER_SERIAL_NO 0x0000 // The game serial number of the multi-boot downloader (programs that boot without a Game Pak) -#if LIBRFU_VERSION >= 1028 -#define RFU_API_BUFF_SIZE_RAM 0x0e8c // Necessary size for buffer specified by rfu_initializeAPI (fast communication version that operates the library SIO interrupt routines in RAM) -#define RFU_API_BUFF_SIZE_ROM 0x052c // Necessary size for buffer specified by rfu_initializeAPI (fast communication version that operates the library SIO interrupt routines in ROM) -#else #define RFU_API_BUFF_SIZE_RAM 0x0e64 // Necessary size for buffer specified by rfu_initializeAPI (fast communication version that operates the library SIO interrupt routines in RAM) #define RFU_API_BUFF_SIZE_ROM 0x0504 // Necessary size for buffer specified by rfu_initializeAPI (fast communication version that operates the library SIO interrupt routines in ROM) -#endif #define RFU_CHILD_MAX 4 // Maximum number of slaves that can be connected to one parent device |