Skip to content

Commit

Permalink
fix: do not free runtime dll for now
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Nov 11, 2024
1 parent 9648d5e commit 7ee07cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Ecsact/Public/EcsactUnreal/Ecsact.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ auto FEcsactModule::UnloadEcsactRuntime() -> void {
#undef RESET_ECSACT_FN

if(EcsactRuntimeHandle) {
FPlatformProcess::FreeDllHandle(EcsactRuntimeHandle);
// NOTE: Freeing the ecsact runtime causes unreal editor to crash
// FPlatformProcess::FreeDllHandle(EcsactRuntimeHandle);
EcsactRuntimeHandle = nullptr;
}
}
Expand Down

0 comments on commit 7ee07cd

Please sign in to comment.