mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 21:24:16 +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();
|
||||
|
||||
#if DEBUG
|
||||
Service<TaskTracker>.Set();
|
||||
Log.Information("[T1] TaskTracker OK!");
|
||||
#endif
|
||||
|
||||
// Initialize the process information.
|
||||
Service<SigScanner>.Set(new SigScanner(true));
|
||||
Service<HookManager>.Set();
|
||||
|
|
@ -121,6 +116,10 @@ namespace Dalamud
|
|||
var framework = Service<Framework>.Set();
|
||||
Log.Information("[T1] Framework OK!");
|
||||
|
||||
#if DEBUG
|
||||
Service<TaskTracker>.Set();
|
||||
Log.Information("[T1] TaskTracker OK!");
|
||||
#endif
|
||||
Service<GameNetwork>.Set();
|
||||
Service<GameGui>.Set();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue