Removed trailing commas in enums

This commit is contained in:
Petar Popovic
2024-09-01 07:08:50 +02:00
committed by Sam Lantinga
parent d4b8072614
commit 1751e127c8
3 changed files with 3 additions and 3 deletions

View File

@@ -142,7 +142,7 @@ typedef enum SDL_AudioFormat
/* SDL_DEFINE_AUDIO_FORMAT(1, 1, 0, 32), */
SDL_AUDIO_F32LE = 0x8120u, /**< 32-bit floating point samples */
/* SDL_DEFINE_AUDIO_FORMAT(1, 0, 1, 32), */
SDL_AUDIO_F32BE = 0x9120u, /**< As above, but big-endian byte order */
SDL_AUDIO_F32BE = 0x9120u /**< As above, but big-endian byte order */
/* SDL_DEFINE_AUDIO_FORMAT(1, 1, 1, 32), */
} SDL_AudioFormat;