Bugfixes from #591

This commit is contained in:
Phlosioneer
2019-03-03 03:14:08 -05:00
committed by huderlem
parent c9d2fcabef
commit e03595a10d
5 changed files with 14 additions and 14 deletions
+4 -4
View File
@@ -76,19 +76,19 @@ static void DisableGpioPortRead();
static const char AgbLibRtcVersion[] = "SIIRTC_V001";
void SiiRtcUnprotect()
void SiiRtcUnprotect(void)
{
EnableGpioPortRead();
sLocked = FALSE;
}
void SiiRtcProtect()
void SiiRtcProtect(void)
{
DisableGpioPortRead();
sLocked = TRUE;
}
u8 SiiRtcProbe()
u8 SiiRtcProbe(void)
{
u8 errorCode;
struct SiiRtcInfo rtc;
@@ -129,7 +129,7 @@ u8 SiiRtcProbe()
return (errorCode << 4) | 1;
}
bool8 SiiRtcReset()
bool8 SiiRtcReset(void)
{
u8 result;
struct SiiRtcInfo rtc;