From d753c92cfafbf59097910f47d34515fc84fc8c9c Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Mon, 6 Nov 2023 08:06:17 +1100 Subject: [PATCH] - Exhumed: Remove sequence post-processing since range checks from c039882dcc8b0a99c17d5eea47e2b0e5d91e49c0 handle this. --- source/games/exhumed/src/sequence.cpp | 29 --------------------------- 1 file changed, 29 deletions(-) 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();