aboutsummaryrefslogtreecommitdiff
path: root/source/srtc.h
diff options
context:
space:
mode:
authorAlcaro2017-01-17 00:37:18 +0100
committerGitHub2017-01-17 00:37:18 +0100
commit6e9a6c9b040035cdc7d015b8bdb21e920c811dca (patch)
tree73e7755d117b8dd9eea499977c632727deb20d00 /source/srtc.h
parent7ed90abe19954aaf1fa56657a08e3cae4c8a67ce (diff)
parentcbbfa871ae3d9db3852d9122a6d8355896c073ed (diff)
downloadsnes9x2005-6e9a6c9b040035cdc7d015b8bdb21e920c811dca.tar.gz
snes9x2005-6e9a6c9b040035cdc7d015b8bdb21e920c811dca.tar.bz2
snes9x2005-6e9a6c9b040035cdc7d015b8bdb21e920c811dca.zip
Merge pull request #26 from jamsilva/master
Cleanups v2
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
-