Quote from: Rhetorica on Mar 31, 2026, 01:13 AMThe verdict: movement feels extremely slow and sluggish but is at least smooth so long as the linear speed isn't increased past 2 or so. Looking through the values specified in dlgMouse.c, I'm astonished at how slow all the presets are—these are basically unusable in my environment.
— naïvely, I assume this is because of the absence of nanosleep. The mouse in this SDL2 build moves very slowly no matter how much I thrash the cursor around, and regardless of what I set the locked mouse speeds to.#if HAVE_NANOSLEEP
#include <errno.h>
#ifdef __MINGW32__
#include <unistd.h>
#else
#include <sys/time.h>
#endif
#endif
#include "host.h"#if HAVE_NANOSLEEP
#include <errno.h>
#include <sys/time.h>
#endif
#include "host.h"?