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

@@ -268,7 +268,7 @@ typedef enum SDL_GPUShaderFormatFlagBits
SDL_GPU_SHADERFORMAT_DXBC = 0x00000004, /* D3D11 (Shader Model 5_0) */
SDL_GPU_SHADERFORMAT_DXIL = 0x00000008, /* D3D12 */
SDL_GPU_SHADERFORMAT_MSL = 0x00000010, /* Metal */
SDL_GPU_SHADERFORMAT_METALLIB = 0x00000020, /* Metal */
SDL_GPU_SHADERFORMAT_METALLIB = 0x00000020 /* Metal */
} SDL_GPUShaderFormatFlagBits;
typedef Uint32 SDL_GPUShaderFormat;