mirror of
https://github.com/libretro/RetroArch
synced 2025-03-30 16:20:27 +00:00
Some struct reordering
This commit is contained in:
parent
8b8c52bb67
commit
f3b440bab9
@ -31,6 +31,9 @@ typedef struct audio_thread
|
||||
sthread_t *thread;
|
||||
slock_t *lock;
|
||||
scond_t *cond;
|
||||
const char *device;
|
||||
unsigned *new_rate;
|
||||
|
||||
bool alive;
|
||||
bool stopped;
|
||||
bool stopped_ack;
|
||||
@ -41,8 +44,6 @@ typedef struct audio_thread
|
||||
int inited;
|
||||
|
||||
/* Initialization options. */
|
||||
const char *device;
|
||||
unsigned *new_rate;
|
||||
unsigned out_rate;
|
||||
unsigned latency;
|
||||
unsigned block_frames;
|
||||
|
@ -34,14 +34,14 @@ RETRO_BEGIN_DECLS
|
||||
|
||||
struct item_file
|
||||
{
|
||||
void *userdata;
|
||||
void *actiondata;
|
||||
char *path;
|
||||
char *label;
|
||||
char *alt;
|
||||
unsigned type;
|
||||
size_t directory_ptr;
|
||||
size_t entry_idx;
|
||||
void *userdata;
|
||||
void *actiondata;
|
||||
};
|
||||
|
||||
typedef struct file_list
|
||||
|
Loading…
x
Reference in New Issue
Block a user