From 8ed050e41ffdd1e6f5b6be74080b9a5a17e20736 Mon Sep 17 00:00:00 2001 From: Raymond Date: Tue, 7 Sep 2021 22:18:17 -0400 Subject: [PATCH] Fix usage --- Dalamud/Game/Framework.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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