From 83f6e70bfa675014218fde1c9c95cd6b290571a4 Mon Sep 17 00:00:00 2001 From: Andre Leiradella Date: Sun, 22 Oct 2017 11:51:39 +0100 Subject: [PATCH] Removed commas from the last enumerations values --- cheevos/cheevos.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cheevos/cheevos.c b/cheevos/cheevos.c index e9f4408278..ff5bdd5e48 100644 --- a/cheevos/cheevos.c +++ b/cheevos/cheevos.c @@ -2861,6 +2861,7 @@ static int cheevos_iterate(coro_t* coro) size_t to_read = 4096; uint8_t *buffer = NULL; const char *end = NULL; + enum { /* Negative values because CORO_SUB generates positive values */ @@ -2877,7 +2878,7 @@ static int cheevos_iterate(coro_t* coro) HTTP_GET = -11, DEACTIVATE = -12, PLAYING = -13, - DELAY = -14, + DELAY = -14 }; static const uint32_t genesis_exts[] = @@ -2920,7 +2921,7 @@ static int cheevos_iterate(coro_t* coro) {GENESIS_MD5, "Genesis (6Mb padding)", genesis_exts}, {LYNX_MD5, "Atari Lynx (only first 512 bytes)", lynx_exts}, {NES_MD5, "NES (discards VROM)", NULL}, - {GENERIC_MD5, "Generic (plain content)", NULL}, + {GENERIC_MD5, "Generic (plain content)", NULL} }; CORO_ENTER()