From b64a3b6faaae8612a23a1afeed2f2ffa7dcd5152 Mon Sep 17 00:00:00 2001 From: RadWolfie Date: Sat, 13 Jan 2024 16:18:23 -0600 Subject: [PATCH] kernel: fix comment typo in RtlTimeToTimeFields --- src/core/kernel/exports/EmuKrnlRtl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/kernel/exports/EmuKrnlRtl.cpp b/src/core/kernel/exports/EmuKrnlRtl.cpp index e3d218c92..9371cdf8a 100644 --- a/src/core/kernel/exports/EmuKrnlRtl.cpp +++ b/src/core/kernel/exports/EmuKrnlRtl.cpp @@ -1719,7 +1719,7 @@ XBSYSAPI EXPORTNUM(305) xbox::void_xt NTAPI xbox::RtlTimeToTimeFields yearday = Days - (years * DAYSPERNORMALQUADRENNIUM) / 4; months = (64 * yearday) / 1959; /* the result is based on a year starting on March. - * To convert take 12 from Januari and Februari and + * To convert take 12 from January and February and * increase the year by one. */ if (months < 14) { TimeFields->Month = (USHORT)(months - 1);