Reorder structs, alignment

This commit is contained in:
twinaphex 2020-09-11 12:40:19 +02:00
parent 7c36e615c2
commit 72f1ff0f4b

View File

@ -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 */