Mercurial > remote-gamepad-server
diff ds.c @ 2:f362b20de51e
Remove trailing whitespaces.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Sun, 22 Feb 2015 18:03:26 +0100 |
parents | e70ea46d6073 |
children | 73c20831be0a |
line wrap: on
line diff
--- a/ds.c +++ b/ds.c @@ -67,14 +67,14 @@ void ds_process_evt(ds_t* ds, int uinput /* DIRECTIONS */ - + if(previous.aX != ds->aX) do_uinput(uinput_fd, ABS_X, ds->aX, EV_ABS); - + if(previous.aY != ds->aY) do_uinput(uinput_fd, ABS_Y, ds->aY, EV_ABS); - + memcpy(&previous, ds, sizeof(ds_t)); - + return; }