wayland: Don't add the nanosecond timestamp offset to the pre-conversion millisecond value

This commit is contained in:
Frank Praznik 2025-05-19 13:59:46 -04:00
parent 25f2376e79
commit 6c61a94a4b
No known key found for this signature in database
1 changed files with 0 additions and 1 deletions

View File

@ -221,7 +221,6 @@ static Uint64 Wayland_EventTimestampMSToNS(Uint32 wl_timestamp_ms)
timestamp_offset += SDL_MS_TO_NS(SDL_UINT64_C(0x100000000));
}
last = wl_timestamp_ms;
wl_timestamp_ms += timestamp_offset;
return SDL_MS_TO_NS(wl_timestamp_ms) + timestamp_offset;
}