Update mxstreamcontroller.cpp

This commit is contained in:
Misha 2023-12-16 20:12:29 -05:00
parent cb1ce0c06b
commit 63a8df2374
No known key found for this signature in database
GPG Key ID: 8441D12AEF33FED8

View File

@ -154,12 +154,10 @@ MxResult MxStreamController::InsertActionToList54(MxDSAction* p_action)
MxAutoLocker locker(&m_criticalSection);
MxDSAction* action = p_action->Clone();
if (action == NULL)
{
if (action == NULL) {
return FAILURE;
}
else
{
else {
m_unk0x54.push_back(action);
return SUCCESS;
}