1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00

(iOS) Buildfix

This commit is contained in:
Twinaphex 2016-03-20 15:07:49 +01:00
parent 93b7dc1bdd
commit 43b931129d
2 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ static void dump_content(RFILE *file, const void *frame,
{
uint8_t *line;
size_t line_size;
int i, j;
int j;
int bytes_per_pixel = (type==RBMP_SOURCE_TYPE_ARGB8888?4:3);
union
{

View File

@ -129,7 +129,7 @@ static bool screenshot_dump(const char *folder, const void *frame,
if (bgr24)
bmp_type = RBMP_SOURCE_TYPE_BGR24;
else if (video_driver_get_pixel_format() == RETRO_PIXEL_FORMAT_XRGB8888)
bmp_type = RBMP_SOURCE_TYPE_XRGB8888;
bmp_type = RBMP_SOURCE_TYPE_XRGB888;
ret = rbmp_save_image(filename,
frame,