Merge pull request #18086 from neil4/overlay-touch-tracking-speed-limit

This commit is contained in:
LibretroAdmin 2025-07-12 21:27:47 +02:00 committed by GitHub
commit 72ff77347f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -3387,7 +3387,7 @@ static void input_overlay_track_touch_inputs(
/* Compute (squared) distances and match new indexes to old */
for (i = 0; i < state->touch_count; i++)
{
min_sq_dist[i] = 1e10f;
min_sq_dist[i] = 3e8f;
for (j = 0; j < old_state->touch_count; j++)
{