aboutsummaryrefslogtreecommitdiff
path: root/source/srtc.h
diff options
context:
space:
mode:
authorJoão Silva2017-01-16 22:39:57 +0000
committerJoão Silva2017-01-16 22:39:57 +0000
commitcbbfa871ae3d9db3852d9122a6d8355896c073ed (patch)
tree73e7755d117b8dd9eea499977c632727deb20d00 /source/srtc.h
parent7ed90abe19954aaf1fa56657a08e3cae4c8a67ce (diff)
downloadsnes9x2005-cbbfa871ae3d9db3852d9122a6d8355896c073ed.tar.gz
snes9x2005-cbbfa871ae3d9db3852d9122a6d8355896c073ed.tar.bz2
snes9x2005-cbbfa871ae3d9db3852d9122a6d8355896c073ed.zip
Many cleanups.
Diffstat (limited to 'source/srtc.h')
-rw-r--r--source/srtc.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/source/srtc.h b/source/srtc.h
index 00624cc..4306999 100644
--- a/source/srtc.h
+++ b/source/srtc.h
@@ -45,13 +45,12 @@ Index Description Range (nibble)
typedef struct
{
- bool needs_init;
- bool count_enable; // Does RTC mark time or is it frozen
- uint8_t data [MAX_RTC_INDEX + 1];
- int8_t index;
- uint8_t mode;
-
- time_t system_timestamp; // Of latest RTC load time
+ bool needs_init;
+ bool count_enable; // Does RTC mark time or is it frozen
+ uint8_t data [MAX_RTC_INDEX + 1];
+ int8_t index;
+ uint8_t mode;
+ time_t system_timestamp; // Of latest RTC load time
uint32_t pad;
} SRTC_DATA;
@@ -68,4 +67,3 @@ void S9xHardResetSRTC();
#define SRTC_SRAM_PAD (4 + 8 + 1 + MAX_RTC_INDEX)
#endif // _srtc_h
-