Revert change
This commit is contained in:
parent
a4040ae7bf
commit
8f20ea34c4
1 changed files with 2 additions and 2 deletions
|
|
@ -164,7 +164,7 @@ public static class Core
|
|||
{
|
||||
// See notes above for _now and why this is a volatile variable.
|
||||
var now = _now;
|
||||
return now == DateTime.MinValue ? Core.Now : now;
|
||||
return now == DateTime.MinValue ? DateTime.UtcNow : now;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -557,7 +557,7 @@ public static class Core
|
|||
while (!Closing)
|
||||
{
|
||||
_tickCount = TickCount;
|
||||
_now = Core.Now;
|
||||
_now = DateTime.UtcNow;
|
||||
|
||||
Mobile.ProcessDeltaQueue();
|
||||
Item.ProcessDeltaQueue();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue