diff --git a/source/games/exhumed/src/sequence.cpp b/source/games/exhumed/src/sequence.cpp index 35758f56a..9e8357b37 100644 --- a/source/games/exhumed/src/sequence.cpp +++ b/source/games/exhumed/src/sequence.cpp @@ -137,32 +137,6 @@ TArray* getFileSeqs(const FName nSeqFile) // //--------------------------------------------------------------------------- -static void fixSeqs() -{ - // Seq file "skulstrt" has one sprite face with 20 frames instead of 24. - if (const auto skulstrt = FileSeqMap.CheckKey("skulstrt")) - { - // Get 5th sequence with missing frames. - if (const auto seq = skulstrt->Data(4)) - { - // Store last frame. - const auto lastframe = seq->frames.Last(); - - // Repeat last frame another four times. - for (unsigned i = 20; i < 24; i++) - { - seq->frames.Push(lastframe); - } - } - } -} - -//--------------------------------------------------------------------------- -// -// -// -//--------------------------------------------------------------------------- - static int addSeq(const char *seqName) { const FStringf seqfilename("%s.seq", seqName); @@ -336,9 +310,6 @@ void seq_LoadSequences() } } - // Perform sequence post-processing for where original assets are malformed. - fixSeqs(); - nShadowPic = getSequence("shadow")->getFirstFrameTexture(); nShadowWidth = (int16_t)TexMan.GetGameTexture(nShadowPic)->GetDisplayWidth();