chore: undef BOOT_AGING by default

This commit is contained in:
goaaats 2022-05-27 14:17:53 +02:00
parent d2335274ee
commit 9bebbf2140
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
3 changed files with 8 additions and 9 deletions

View file

@ -78,7 +78,7 @@ namespace Dalamud
this.finishUnloadSignal = finishSignal;
this.finishUnloadSignal.Reset();
this.mainThreadContinueEvent = mainThreadContinueEvent;
}

View file

@ -1,5 +1,6 @@
using System;
using System.Linq;
using Serilog;
namespace Dalamud.Fixes;

View file

@ -1,17 +1,12 @@
#define BOOT_AGING
using System;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Numerics;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
using CheapLoc;
using Dalamud.Configuration.Internal;
using Dalamud.Game.ClientState.Conditions;
@ -34,6 +29,7 @@ using ImGuiNET;
using ImGuiScene;
using PInvoke;
using Serilog.Events;
namespace Dalamud.Interface.Internal
{
/// <summary>
@ -70,6 +66,10 @@ namespace Dalamud.Interface.Internal
private bool isImGuiDrawDevMenu = false;
#endif
#if BOOT_AGING
private bool signaledBoot = false;
#endif
private bool isImGuiDrawDemoWindow = false;
private bool isImGuiTestWindowsInMonospace = false;
private bool isImGuiDrawMetricsWindow = false;
@ -354,8 +354,6 @@ namespace Dalamud.Interface.Internal
#endregion
private bool signaledBoot = false;
private void OnDraw()
{
this.frameCount++;