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