Skip to content

Commit

Permalink
Update SeqActLogEnabler to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
henbagle committed Dec 6, 2021
1 parent 3ce03f0 commit 6cbd105
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions SeqActLog Enabler/LE1SeqActLogEnabler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@

#define MYHOOK "LE1SeqActLogEnabler_"

SPI_PLUGINSIDE_SUPPORT(L"LE1SeqActLogEnabler", L"2.0.0", L"HenBagle", SPI_GAME_LE1, SPI_VERSION_ANY);
SPI_PLUGINSIDE_SUPPORT(L"LE1SeqActLogEnabler", L"3.0.0", L"HenBagle", SPI_GAME_LE1, SPI_VERSION_ANY);
SPI_PLUGINSIDE_POSTLOAD;
SPI_PLUGINSIDE_ASYNCATTACH;

ME3TweaksASILogger logger("SeqAct_Log Enabler v2", "SeqActLog.txt");
ScreenLogger screenLogger(L"SeqAct_Log Enabler v2");
ME3TweaksASILogger logger("SeqAct_Log Enabler v3", "SeqActLog.txt");
ScreenLogger screenLogger(L"SeqAct_Log Enabler v3");

std::wstringstream ss;

Expand Down Expand Up @@ -141,7 +141,6 @@ void ProcessEvent_hook(UObject* Context, UFunction* Function, void* Parms, void*
auto seqLog = reinterpret_cast<USeqAct_Log*>(Context);
auto numVarLinks = seqLog->VariableLinks.Count;

// Todo: Patch the function that removes m_aObjComment
if (seqLog->bOutputObjCommentToScreen == 1ul)
{
auto numLines = seqLog->m_aObjComment.Num();
Expand Down

0 comments on commit 6cbd105

Please sign in to comment.