From b3ec9426465e2791d3db235850de36eb9bf21f90 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 20 Aug 2020 19:16:05 +0200 Subject: [PATCH] (verbosity.c) reorder struct, alignment --- verbosity.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/verbosity.c b/verbosity.c index 258d7c8379..7d4f701353 100644 --- a/verbosity.c +++ b/verbosity.c @@ -87,18 +87,18 @@ typedef struct verbosity_state { - bool verbosity; - - bool initialized; - bool override_active; - char override_path[PATH_MAX_LENGTH]; +#ifdef HAVE_LIBNX + Mutex mtx; +#endif /* If this is non-NULL. RARCH_LOG and friends * will write to this file. */ FILE *fp; void *buf; -#ifdef HAVE_LIBNX - Mutex mtx; -#endif + + char override_path[PATH_MAX_LENGTH]; + bool verbosity; + bool initialized; + bool override_active; } verbosity_state_t; /* TODO/FIXME - static public global variables */