mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
reorder structs, alignment
This commit is contained in:
parent
6416e66954
commit
789bc83276
2 changed files with 3 additions and 3 deletions
|
@ -42,8 +42,8 @@
|
||||||
* an image load */
|
* an image load */
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
gfx_thumbnail_t *thumbnail;
|
|
||||||
uint64_t list_id;
|
uint64_t list_id;
|
||||||
|
gfx_thumbnail_t *thumbnail;
|
||||||
} gfx_thumbnail_tag_t;
|
} gfx_thumbnail_tag_t;
|
||||||
|
|
||||||
/* Setters */
|
/* Setters */
|
||||||
|
|
|
@ -40,6 +40,8 @@
|
||||||
* each individual entry by hand... */
|
* each individual entry by hand... */
|
||||||
struct gfx_thumbnail_path_data
|
struct gfx_thumbnail_path_data
|
||||||
{
|
{
|
||||||
|
enum playlist_thumbnail_mode playlist_right_mode;
|
||||||
|
enum playlist_thumbnail_mode playlist_left_mode;
|
||||||
char system[PATH_MAX_LENGTH];
|
char system[PATH_MAX_LENGTH];
|
||||||
char content_path[PATH_MAX_LENGTH];
|
char content_path[PATH_MAX_LENGTH];
|
||||||
char content_label[PATH_MAX_LENGTH];
|
char content_label[PATH_MAX_LENGTH];
|
||||||
|
@ -48,8 +50,6 @@ struct gfx_thumbnail_path_data
|
||||||
char content_img[PATH_MAX_LENGTH];
|
char content_img[PATH_MAX_LENGTH];
|
||||||
char right_path[PATH_MAX_LENGTH];
|
char right_path[PATH_MAX_LENGTH];
|
||||||
char left_path[PATH_MAX_LENGTH];
|
char left_path[PATH_MAX_LENGTH];
|
||||||
enum playlist_thumbnail_mode playlist_right_mode;
|
|
||||||
enum playlist_thumbnail_mode playlist_left_mode;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Resets thumbnail path data
|
/* Resets thumbnail path data
|
||||||
|
|
Loading…
Add table
Reference in a new issue