mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
chore: undef BOOT_AGING by default
This commit is contained in:
parent
d2335274ee
commit
9bebbf2140
3 changed files with 8 additions and 9 deletions
|
|
@ -78,7 +78,7 @@ namespace Dalamud
|
|||
|
||||
this.finishUnloadSignal = finishSignal;
|
||||
this.finishUnloadSignal.Reset();
|
||||
|
||||
|
||||
this.mainThreadContinueEvent = mainThreadContinueEvent;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
using System;
|
||||
using System.Linq;
|
||||
|
||||
using Serilog;
|
||||
|
||||
namespace Dalamud.Fixes;
|
||||
|
|
|
|||
|
|
@ -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++;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue