Skip to content

Commit

Permalink
- fixed incorrect write barrier in sound sequence code.
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Aug 9, 2019
1 parent 8447525 commit a239675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sound/s_sndseq.cpp
Expand Up @@ -808,7 +808,7 @@ DSeqNode::DSeqNode (FLevelLocals *l, int sequence, int modenum)
}
else
{
Level->SequenceListHead->m_Prev = this; GC::WriteBarrier(Level->SequenceListHead->m_Prev, this);
Level->SequenceListHead->m_Prev = this; GC::WriteBarrier(Level->SequenceListHead, this);
m_Next = Level->SequenceListHead; GC::WriteBarrier(this, Level->SequenceListHead);
Level->SequenceListHead = this;
m_Prev = nullptr;
Expand Down

0 comments on commit a239675

Please sign in to comment.