Fix mixed indentation

This commit is contained in:
p-sam 2019-10-23 14:51:16 +00:00
parent 0e79aa80d9
commit f7f0499601

View File

@ -901,18 +901,18 @@ static bool switch_input_set_rumble(void *data, unsigned port,
} }
input_driver_t input_switch = { input_driver_t input_switch = {
switch_input_init, switch_input_init,
switch_input_poll, switch_input_poll,
switch_input_state, switch_input_state,
switch_input_free_input, switch_input_free_input,
NULL, NULL,
NULL, NULL,
switch_input_get_capabilities, switch_input_get_capabilities,
"switch", "switch",
switch_input_grab_mouse, switch_input_grab_mouse,
NULL, NULL,
switch_input_set_rumble, switch_input_set_rumble,
switch_input_get_joypad_driver, switch_input_get_joypad_driver,
NULL, NULL,
false false
}; };