diff --git a/Dalamud/Game/Framework.cs b/Dalamud/Game/Framework.cs index cee62be01..6258b51c6 100644 --- a/Dalamud/Game/Framework.cs +++ b/Dalamud/Game/Framework.cs @@ -184,7 +184,7 @@ namespace Dalamud.Game if (this.DispatchUpdateEvents) { var now = DateTime.Now; - this.DeltaFrameworkUpdate = now - this.LastUpdate; + this.UpdateDelta = now - this.LastUpdate; this.LastUpdate = now; try