remove C++ using from snes_color.h

This commit is contained in:
scawful
2024-08-08 22:49:11 -04:00
parent a65faf84ed
commit 215d3334ac

View File

@@ -25,7 +25,7 @@ struct snes_palette {
unsigned int size; /**< Size of the palette. */
snes_color* colors; /**< Pointer to the colors in the palette. */
};
using snes_palette = struct snes_palette;
typedef struct snes_palette snes_palette;
#ifdef __cplusplus
}