mirror of
https://github.com/libretro/RetroArch
synced 2025-03-31 19:21:06 +00:00
(verbosity.c) reorder struct, alignment
This commit is contained in:
parent
5a8da81d07
commit
b3ec942646
16
verbosity.c
16
verbosity.c
@ -87,18 +87,18 @@
|
|||||||
|
|
||||||
typedef struct verbosity_state
|
typedef struct verbosity_state
|
||||||
{
|
{
|
||||||
bool verbosity;
|
#ifdef HAVE_LIBNX
|
||||||
|
Mutex mtx;
|
||||||
bool initialized;
|
#endif
|
||||||
bool override_active;
|
|
||||||
char override_path[PATH_MAX_LENGTH];
|
|
||||||
/* If this is non-NULL. RARCH_LOG and friends
|
/* If this is non-NULL. RARCH_LOG and friends
|
||||||
* will write to this file. */
|
* will write to this file. */
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
void *buf;
|
void *buf;
|
||||||
#ifdef HAVE_LIBNX
|
|
||||||
Mutex mtx;
|
char override_path[PATH_MAX_LENGTH];
|
||||||
#endif
|
bool verbosity;
|
||||||
|
bool initialized;
|
||||||
|
bool override_active;
|
||||||
} verbosity_state_t;
|
} verbosity_state_t;
|
||||||
|
|
||||||
/* TODO/FIXME - static public global variables */
|
/* TODO/FIXME - static public global variables */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user