2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 23:07:42 +00:00

Windows Fixes

This commit is contained in:
Phillip Stephens
2017-01-29 22:08:44 -08:00
parent e276bd3be9
commit 1960103f6c
5 changed files with 9 additions and 9 deletions

View File

@@ -9,7 +9,7 @@ namespace urde
CScriptMemoryRelay::CScriptMemoryRelay(TUniqueId uid, const std::string& name, const CEntityInfo& info, bool b1, bool b2, bool b3)
: CEntity(uid, info, true, name),
x34_24_(b1),
x34_25_skipSendNone(b2),
x34_25_skipSendActive(b2),
x34_26_ignoreMessages(b3)
{
}
@@ -32,7 +32,7 @@ void CScriptMemoryRelay::AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId obj
else if (msg == EScriptObjectMessage::Activate)
{
stateMgr.GetRelayTracker()->AddRelay(xc_editorId);
if (!x34_25_skipSendNone)
if (!x34_25_skipSendActive)
SendScriptMsgs(EScriptObjectState::Active, stateMgr, EScriptObjectMessage::None);
return;