From 245fc55b631a3178ed4ee520936a926223a36b17 Mon Sep 17 00:00:00 2001 From: nmlgc Date: Wed, 29 Jan 2020 08:57:06 +0100 Subject: [PATCH] [Maintenance] [th03] Fix playchar_t enum syntax -.- Part of P0071, funded by KirbyComment and -Tom-. --- th03/chars/chars.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/th03/chars/chars.h b/th03/chars/chars.h index 492a0316..8b61c5f8 100644 --- a/th03/chars/chars.h +++ b/th03/chars/chars.h @@ -1,14 +1,14 @@ typedef enum { - PLAYCHAR_REIMU = 0 - PLAYCHAR_MIMA = 1 - PLAYCHAR_MARISA = 2 - PLAYCHAR_ELLEN = 3 - PLAYCHAR_KOTOHIME = 4 - PLAYCHAR_KANA = 5 - PLAYCHAR_RIKAKO = 6 - PLAYCHAR_CHIYURI = 7 - PLAYCHAR_YUMEMI = 8 - PLAYCHAR_COUNT = 9 + PLAYCHAR_REIMU = 0, + PLAYCHAR_MIMA = 1, + PLAYCHAR_MARISA = 2, + PLAYCHAR_ELLEN = 3, + PLAYCHAR_KOTOHIME = 4, + PLAYCHAR_KANA = 5, + PLAYCHAR_RIKAKO = 6, + PLAYCHAR_CHIYURI = 7, + PLAYCHAR_YUMEMI = 8, + PLAYCHAR_COUNT = 9, } playchars_t; typedef struct {