mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-21 16:09:19 +01:00
fix: TaskTracker needs to run after framework or it explodes
This commit is contained in:
parent
339009a2fc
commit
31ebf06d53
1 changed files with 4 additions and 5 deletions
|
|
@ -104,11 +104,6 @@ namespace Dalamud
|
||||||
|
|
||||||
Service<ServiceContainer>.Set();
|
Service<ServiceContainer>.Set();
|
||||||
|
|
||||||
#if DEBUG
|
|
||||||
Service<TaskTracker>.Set();
|
|
||||||
Log.Information("[T1] TaskTracker OK!");
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Initialize the process information.
|
// Initialize the process information.
|
||||||
Service<SigScanner>.Set(new SigScanner(true));
|
Service<SigScanner>.Set(new SigScanner(true));
|
||||||
Service<HookManager>.Set();
|
Service<HookManager>.Set();
|
||||||
|
|
@ -121,6 +116,10 @@ namespace Dalamud
|
||||||
var framework = Service<Framework>.Set();
|
var framework = Service<Framework>.Set();
|
||||||
Log.Information("[T1] Framework OK!");
|
Log.Information("[T1] Framework OK!");
|
||||||
|
|
||||||
|
#if DEBUG
|
||||||
|
Service<TaskTracker>.Set();
|
||||||
|
Log.Information("[T1] TaskTracker OK!");
|
||||||
|
#endif
|
||||||
Service<GameNetwork>.Set();
|
Service<GameNetwork>.Set();
|
||||||
Service<GameGui>.Set();
|
Service<GameGui>.Set();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue