Skip to content

Commit

Permalink
Fixed il2cpp mod handler loader
Browse files Browse the repository at this point in the history
  • Loading branch information
slxdy committed Jun 8, 2024
1 parent 9909b37 commit b1385d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TweaksLauncher.Game/Il2CppHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ private static void LoadModHandler()

modHandler.GetType("TweaksLauncher.ModHandler", true)!
.InvokeMember("Start", BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.Static, null, null,
[new Action<string?, Color, string?, Color>(Logger.Log), Program.baseDir, Program.gameName, Program.gamePath]);
[Program.baseDir, Program.gameName, Program.gamePath, new Action<string?, Color, string?, Color>(Logger.Log)]);
}

private static nint OnIl2CppInit(nint domainName)
Expand Down

0 comments on commit b1385d8

Please sign in to comment.