fix two-part bug with decimal seconds introduced during big refactor.

This commit is contained in:
CarpeNoctem
2023-09-06 01:21:26 +10:00
parent 56f76b8c6a
commit 82ed355aba
2 changed files with 4 additions and 4 deletions

View File

@@ -58,8 +58,8 @@ typedef struct {
} french_revolutionary_state_t;
typedef struct {
uint8_t second : 6; // 0-99
uint8_t minute : 6; // 0-99
uint8_t second : 8; // 0-99
uint8_t minute : 8; // 0-99
uint8_t hour : 5; // 0-10
} fr_decimal_time;