From 56739eb08b8673806252cf3d292a03850ff6e554 Mon Sep 17 00:00:00 2001 From: qndel Date: Wed, 18 Sep 2024 08:36:56 +0200 Subject: [PATCH] thw -> the --- src/time/SDL_time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/time/SDL_time.c b/src/time/SDL_time.c index 2e63efc26e..07c410fac2 100644 --- a/src/time/SDL_time.c +++ b/src/time/SDL_time.c @@ -195,7 +195,7 @@ SDL_bool SDL_DateTimeToTime(const SDL_DateTime *dt, SDL_Time *ticks) void SDL_TimeToWindows(SDL_Time ticks, Uint32 *dwLowDateTime, Uint32 *dwHighDateTime) { /* Convert nanoseconds to Win32 ticks. - * SDL_Time has a range of roughly 292 years, so even SDL_MIN_TIME can't underflow thw Win32 epoch. + * SDL_Time has a range of roughly 292 years, so even SDL_MIN_TIME can't underflow the Win32 epoch. */ const Uint64 wtime = (Uint64)((ticks / 100) + DELTA_EPOCH_1601_100NS);