Skip to content

Commit d130c38

Browse files
authored
Merge pull request #979 from Unity-Technologies/unity-master-pal-datetime-ns
fix issue where pal was not returning the right data
2 parents d6d212f + 17d88a2 commit d130c38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mono/utils/unity-time.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ mono_100ns_ticks (void)
2626
gint64
2727
mono_100ns_datetime (void)
2828
{
29-
return (gint64) UnityPalGetTicks100NanosecondsDateTime();
29+
return (gint64) UnityPalGetSystemTimeAsFileTime();
3030
}
3131

3232
gint64

0 commit comments

Comments
 (0)