diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2021-01-03 01:11:12 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2021-01-03 02:52:19 +0100 |
| commit | fdc6833da144252859010bb7b6c2087be491a4b3 (patch) | |
| tree | fc37bcedc09b3d5f74337e83a01dd857c0997eb2 | |
| parent | fe8c6b7672fce25460d60b99c1db4a2b9da65861 (diff) | |
Replace MEMCARD_STATUS with enum memcard_status
| -rw-r--r-- | Source/MemCard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/MemCard.c b/Source/MemCard.c index 991ac97..81d8f8a 100644 --- a/Source/MemCard.c +++ b/Source/MemCard.c @@ -141,7 +141,7 @@ static GsGPoly4 MemCardRect; static GsRectangle MemCardProgressBar;
static GsLine MemCardProgressBarLines[MEMCARD_PROGRESS_BAR_N_LINES];
static uint8_t IconIndex;
-static MEMCARD_STATUS MemCardStatus[MEMCARD_NUMBER_OF_SLOTS];
+static enum memcard_status MemCardStatus[MEMCARD_NUMBER_OF_SLOTS];
// Local variables used to communicate between functions and ISR.
// Names are pretty self-explanatory.
|
