From 72f1ff0f4b0b81fb4ba8636436add580348c8111 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 11 Sep 2020 12:40:19 +0200 Subject: [PATCH] Reorder structs, alignment --- input/drivers_joypad/parport_joypad.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/input/drivers_joypad/parport_joypad.c b/input/drivers_joypad/parport_joypad.c index f9bc41b732..bf01bace7b 100644 --- a/input/drivers_joypad/parport_joypad.c +++ b/input/drivers_joypad/parport_joypad.c @@ -40,12 +40,12 @@ struct parport_joypad { + char *ident; int fd; uint32_t buttons; - bool button_enable[PARPORT_NUM_BUTTONS]; char saved_data; char saved_control; - char *ident; + bool button_enable[PARPORT_NUM_BUTTONS]; }; /* TODO/FIXME - static global */