Skip to content

Commit

Permalink
Re-enabled events
Browse files Browse the repository at this point in the history
  • Loading branch information
muit committed Oct 31, 2023
1 parent 015f1c2 commit 208c325
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Source/SaveExtension/Private/SaveManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,8 @@ void USaveManager::OnLoadFinished(const bool bError)
{
TRACE_CPUPROFILER_EVENT_SCOPE(USaveManager::OnLoadFinished);

/*IterateSubscribedInterfaces([&Filter, bError](auto* Object) {
FSELevelFilter Filter;
IterateSubscribedInterfaces([&Filter, bError](auto* Object) {
check(Object->template Implements<USaveExtensionInterface>());

// C++ event
Expand All @@ -637,7 +638,7 @@ void USaveManager::OnLoadFinished(const bool bError)
Interface->OnLoadFinished(Filter, bError);
}
ISaveExtensionInterface::Execute_ReceiveOnLoadFinished(Object, Filter, bError);
});*/
});

if (!bError)
{
Expand Down

0 comments on commit 208c325

Please sign in to comment.