fix: dalamud boot deadlock over wine

This commit is contained in:
Kaz Wolfe 2025-03-24 18:50:39 -07:00
parent 27dc659561
commit 445fe09181
No known key found for this signature in database
GPG key ID: 258813F53A16EBB4

View file

@ -183,7 +183,7 @@ public sealed class EntryPoint
CultureFixes.Apply();
// Currently VEH is not fully functional on WINE
if (!Util.IsWine())
if (info.Platform != OSPlatform.Windows)
InitSymbolHandler(info);
var dalamud = new Dalamud(info, fs, configuration, mainThreadContinueEvent);