Remove last comma from enums

This commit is contained in:
dbalatoni13 2025-04-01 05:14:15 +02:00
parent 274f68087b
commit 43e3e7cca4
12 changed files with 98 additions and 101 deletions

View file

@ -11,7 +11,7 @@ typedef enum DEMO_STAT_TYPE {
DEMO_STAT_TBW = 6,
DEMO_STAT_TBP = 7,
DEMO_STAT_MYC = 8,
DEMO_STAT_MYR = 9,
DEMO_STAT_MYR = 9
} DEMO_STAT_TYPE;
typedef struct DemoStatData {
@ -26,7 +26,7 @@ typedef enum {
DEMO_STAT_BL = 1,
DEMO_STAT_TLD = 2,
DEMO_STAT_BLD = 3,
DEMO_STAT_IO = 4,
DEMO_STAT_IO = 4
} DEMO_STAT_DISP;
extern unsigned char DemoStatEnable;