Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aragas committed Jan 12, 2024
1 parent 0469e3a commit aec9b60
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@ public static unsafe partial class Bindings
}


[UnmanagedCallersOnly(EntryPoint = "ve_save_load_order", CallConvs = new[] { typeof(CallConvCdecl) })]
public static return_value_json* GetLoadOrder(param_ptr* p_handle)
[UnmanagedCallersOnly(EntryPoint = "ve_load_load_order", CallConvs = new[] { typeof(CallConvCdecl) })]
public static return_value_json* LoadLoadOrder(param_ptr* p_handle)
{
Logger.LogInput();
try
Expand All @@ -258,8 +258,8 @@ public static unsafe partial class Bindings
}
}

[UnmanagedCallersOnly(EntryPoint = "ve_load_load_order", CallConvs = new[] { typeof(CallConvCdecl) })]
public static return_value_void* SetLoadOrder(param_ptr* p_handle, param_json* p_load_order)
[UnmanagedCallersOnly(EntryPoint = "ve_save_load_order", CallConvs = new[] { typeof(CallConvCdecl) })]
public static return_value_void* SaveLoadOrder(param_ptr* p_handle, param_json* p_load_order)
{
Logger.LogInput(p_load_order);
try
Expand Down

0 comments on commit aec9b60

Please sign in to comment.