diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-05-15 19:47:03 -0500 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2021-05-15 19:47:03 -0500 |
commit | 5d6018d667c8897e660ab1752b25884befdce5af (patch) | |
tree | 1ab15b5a35abb358174a611c7f288a86be3e9921 /arm9/lib/include/RTC_internal.h | |
parent | 61776017dc42d46aa5cefcb40429d7d96984f703 (diff) |
rtc funcs are all bool
Diffstat (limited to 'arm9/lib/include/RTC_internal.h')
-rw-r--r-- | arm9/lib/include/RTC_internal.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arm9/lib/include/RTC_internal.h b/arm9/lib/include/RTC_internal.h index fb86e818..77934291 100644 --- a/arm9/lib/include/RTC_internal.h +++ b/arm9/lib/include/RTC_internal.h @@ -1,10 +1,10 @@ #ifndef NITRO_RTC_INTERNAL_H_ #define NITRO_RTC_INTERNAL_H_ -u32 RtcSendPxiCommand(u8 command); -u32 RTCi_WriteRawStatus2Async(void); -u32 RTCi_ReadRawTimeAsync(void); -u32 RTCi_ReadRawDateAsync(void); -u32 RTCi_ReadRawDateTimeAsync(void); +BOOL RtcSendPxiCommand(u8 command); +BOOL RTCi_WriteRawStatus2Async(void); +BOOL RTCi_ReadRawTimeAsync(void); +BOOL RTCi_ReadRawDateAsync(void); +BOOL RTCi_ReadRawDateTimeAsync(void); #endif //NITRO_RTC_INTERNAL_H_ |