Skip to content

Commit 87840e5

Browse files
committed
(rbmp) Change typedef enum
1 parent 70bb4c6 commit 87840e5

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

libretro-common/formats/bmp/rbmp_encode.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ static void dump_line_32_to_24(uint8_t *line, const uint32_t *src, unsigned widt
138138
}
139139

140140
static void dump_content(RFILE *file, const void *frame,
141-
int width, int height, int pitch, rbmp_source_type type)
141+
int width, int height, int pitch, enum rbmp_source_type type)
142142
{
143143
uint8_t *line;
144144
size_t line_size;
@@ -202,7 +202,7 @@ static void dump_content(RFILE *file, const void *frame,
202202

203203
bool rbmp_save_image(const char *filename, const void *frame,
204204
unsigned width, unsigned height,
205-
unsigned pitch, rbmp_source_type type)
205+
unsigned pitch, enum rbmp_source_type type)
206206
{
207207
bool ret;
208208
RFILE *file = retro_fopen(filename, RFILE_MODE_WRITE, -1);

libretro-common/include/formats/rbmp.h

+6-4
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,22 @@
2929
extern "C" {
3030
#endif
3131

32-
typedef enum
32+
enum rbmp_source_type
3333
{
3434
RBMP_SOURCE_TYPE_DONT_CARE,
3535
RBMP_SOURCE_TYPE_BGR24,
3636
RBMP_SOURCE_TYPE_XRGB888,
3737
RBMP_SOURCE_TYPE_RGB565,
3838
RBMP_SOURCE_TYPE_ARGB8888
39-
} rbmp_source_type;
39+
};
4040

4141
bool rbmp_save_image(
4242
const char *filename,
4343
const void *frame,
44-
unsigned width, unsigned height,
45-
unsigned pitch, rbmp_source_type type);
44+
unsigned width,
45+
unsigned height,
46+
unsigned pitch,
47+
enum rbmp_source_type type);
4648

4749
#ifdef __cplusplus
4850
}

0 commit comments

Comments
 (0)