Jelajahi Sumber

Update ITimeZoneService.cs

Fix typo
Ac_K 7 tahun lalu
induk
melakukan
ed075ae3cd
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      Ryujinx.HLE/OsHle/Services/Time/ITimeZoneService.cs

+ 1 - 1
Ryujinx.HLE/OsHle/Services/Time/ITimeZoneService.cs

@@ -117,7 +117,7 @@ namespace Ryujinx.HLE.OsHle.Services.Time
                 TimeZoneInfo Info = TimeZoneInfo.FindSystemTimeZoneById(TzID);
                 byte[] TzData     = Encoding.ASCII.GetBytes(Info.Id);
 
-                // FIXME: This is not in ANY cases accurate, but the games don't about the content of the buffer, they only pass it.
+                // FIXME: This is not in ANY cases accurate, but the games don't care about the content of the buffer, they only pass it.
                 // TODO: Reverse the TZif2 conversion in PCV to make this match with real hardware.
                 Context.Memory.WriteBytes(BufferPosition, TzData);
             }